Showing posts with label Doctrine of Equivalents. Show all posts
Showing posts with label Doctrine of Equivalents. Show all posts

Saturday, August 15, 2026

AI That Reads the Technical Meaning of Patents, Not Just Their Words — Training on Claims and Descriptions to Detect Patent Risk

INVENTOR'S TECHNOLOGY COLUMN · AI AND PATENT ANALYTICS

Training AI on Patent Claims and Detailed Descriptions to Identify Patent Risk

The same technology can be described in entirely different words. This article explains an AI-based patent-analysis technique that turns the native structure of patent documents into training signals and identifies passages in a lengthy disclosure that are most closely related to a claim.

Conceptual illustration of an AI system analyzing the semantic relationship between a patent claim and the detailed description
Conceptual overview of AI learning the semantic correspondence between patent claims and the detailed description

1. Why Keyword Search Misses Technical Relationships

Patent searching is not simply a matter of finding identical words. Comparing a product description with a claim is relatively straightforward when both use the same terminology. The harder cases arise when two documents describe the same technology in different language. A drafter may reorder components, move between broader and narrower concepts, or describe the same function in different terms. A keyword search can easily miss those connections.

The technology I invented and filed for patent protection begins with that problem. Its objective is to move beyond word matching and train an AI model to evaluate how closely the technical meaning of a claim corresponds to a passage in another document. The central idea is to use structural relationships already present within patent documents as training data. Rather than requiring experts to read tens of thousands of documents and manually create an answer key, the system is designed so that the patent documents themselves supply part of the training signal.

2. Turning Patent Documents into Training Data

The starting point is the structure of a patent document. The claims define the legal boundaries of the invention, while the detailed description explains what the invention is and how it may be implemented. Article 42(4)(i) of the Korean Patent Act requires the claims to be supported by the detailed description. That requirement helps prevent an applicant from monopolizing subject matter that was not disclosed and enables a person skilled in the art to understand the relationship between the claimed invention and the specification.

Viewed through a machine-learning lens, that legal structure creates an opportunity. A claim and a passage from the detailed description of the same patent will ordinarily have a strong relationship. By contrast, a claim and a randomly selected passage from a different patent are statistically more likely to be unrelated. The system can therefore assign label 1 to a claim–description pair drawn from the same patent and label 0 to a pair assembled from different patents.

The immediate benefit is a substantial reduction in manual labeling. In a conventional supervised-learning project, experts might need to read each document pair and decide whether it is related. Patents take time to read carefully, so the cost rises quickly as the dataset grows. Automatically pairing claims with passages from the same patent—and combining claims with randomly selected passages from other patents—can remove much of that bottleneck.

Negative samples are not mere filler. If a model sees only highly related pairs, it may learn to treat a few overlapping words as sufficient evidence of a meaningful relationship. Training it on claim–description pairs drawn from different patents forces the model to distinguish superficial word overlap from technical correspondence. Positive samples show the model what a relationship looks like; negative samples help define its boundary.

3. Working Around the 512-Token Limit

Document length presents the next obstacle. In its basic form, BERT accepts no more than 512 tokens in a single input. A patent's detailed description, however, often runs to thousands of words. Feeding a claim and the entire description into the model at once is therefore impractical.

My proposed approach first divides the detailed description into chunks of approximately 310 tokens. It then calculates the semantic relationship between the claim and each chunk and selects the highest-scoring passages as input candidates. This differs from mechanically taking text from the beginning of the document. The limited input window is allocated first to passages most likely to bear directly on the claim.

A dot product between vector representations can be used to rank the chunks. The underlying intuition is straightforward. The claim is represented as one semantic vector and each description chunk as another. The operation scores how closely the two vectors point in the same direction. A higher score indicates a greater likelihood that the claim and the passage are semantically related.

  1. Segment: Divide the detailed description into chunks of roughly 310 tokens.
  2. Score: Calculate the semantic relationship between the claim and each chunk.
  3. Select: Choose the highest-scoring chunks as candidates for the BERT input.

4. How BERT Reads the Relationship Between Two Texts

The selected text is formatted so that BERT can distinguish the two inputs. A representative sequence is [CLS] + claim + [SEP] + detailed description + [SEP]. The [SEP] tokens mark the boundary between the texts, while segment embeddings identify which tokens belong to which input. The final representation of the [CLS] token can then serve as a summary vector for classifying the relationship between the two texts.

This structure prevents the claim and the description from collapsing into a single undifferentiated passage. Human readers naturally use headings, paragraphs, and line breaks to identify document boundaries. A model has no comparable intuition unless the input structure expressly tells it, in effect, “Text A ends here, and Text B begins here.”

During training, label-1 and label-0 examples are handled through an alternating-batch strategy. Rather than mixing both classes indiscriminately from the outset, the system calculates the loss for each group and updates the model parameters in a direction that reduces both losses. The purpose is to keep the model's decision rule from drifting toward one class merely because that class is larger or easier to learn.

5. What the Reported Experiment Shows

In the experiment described in the source manuscript, cross-entropy loss decreased from 0.89 to 0.19 over 15 training epochs, and accuracy reached approximately 80%. The manuscript also reports that the model classified all 17 text pairs in a comparison set that used different terminology as label 1.

15 epochsTraining duration
0.89 → 0.19Cross-entropy loss
Approx. 80%Accuracy under the reported conditions

More important than the headline numbers is the model's response to changes in wording. One of the central difficulties in patent searching is that the same technology can be obscured by different language. Suppose one document refers to an “adhesive retention mechanism,” while another describes the same arrangement using entirely different terminology. A keyword search may push the documents apart because they share few words. A semantic model is intended to do the opposite: it asks what function each component performs in context and how the components relate to one another.

6. The Line Between Semantic Similarity and Infringement

This discussion naturally calls to mind the doctrine of equivalents. Patent infringement analysis does not necessarily end merely because an accused product departs from the literal wording of a claim. Under Korean Supreme Court precedent, an altered element may in appropriate circumstances be treated as equivalent when requirements concerning the invention's problem-solving principle, substantially identical operation and effect, and interchangeability are satisfied, absent a recognized bar to equivalence.

A legal analysis must separately address whether every claim limitation is satisfied, as well as prosecution history, the prior art, any deliberate exclusion or disclaimer, and each requirement of the doctrine of equivalents. The practical value of this invention therefore does not lie in having AI replace a judge or lawyer. Its more useful role is to narrow the set of documents that a human expert must read. Among thousands—or tens of thousands—of patents and product documents, the system can elevate candidates that correspond strongly to a claim, after which patent counsel, litigators, and R&D personnel can conduct a rigorous review.

7. Practical Applications and the Value of Data

The same semantic-comparison architecture supports several practical use cases. Patent-risk analysis, portfolio monitoring, and prior-art searching all converge on the task of finding technical relationships expressed in different language.

  • Product development: Compare competitor patents with product specifications to identify potential risk candidates early.
  • Rights monitoring: Compare descriptions of newly released products with existing claims to prioritize human review.
  • Prior-art searching: Surface references that describe relevant subject matter using language different from the claim.

In patent AI, the most expensive resource is not always GPU capacity or model parameters. Often the harder problem is obtaining good training data. Expert labels can be accurate, but they are slow and costly to produce. Public patent documents are abundant, yet they are not ready-made answer keys. This invention seeks a middle path: use the legal and documentary structure already embedded in patents to reduce the cost of generating training data.

Describing the project simply as “turning law into mathematics” misses the point. More precisely, it identifies signals that AI can learn from the structure and rules accumulated in legal documents. The relationship between claims and the detailed description, the selection of relevant passages, the construction of positive and negative samples, and the formatting that distinguishes two text inputs together convert semantic correspondence in patent documents into a computationally tractable problem.

8. Remaining Challenges and the Path Forward

Substantial challenges remain. Terminology and sentence structure vary by technical field, which may require domain-specific training. Random negative sampling can also produce false negatives by pairing documents that are, in fact, technically related. Narrowing the gap between semantic similarity and legal infringement analysis will require claim-element-level analysis supplemented by prosecution history, prior art, and expert-labeled data. BERT's 512-token constraint may also be addressed through longer-context models or hierarchical architectures.

Even so, the starting proposition is clear: a patent is not merely an undifferentiated block of text. A special relationship exists between the claims that define the legal right and the detailed description that explains the technology. Once that relationship is converted into training data, AI can move beyond retrieving documents that use the same words and begin exploring why two documents may be technically related.

The proper role of AI in patent practice is not to displace the expert's ultimate judgment. It is to find, more quickly and across a wider field, the candidates that deserve that judgment. The system first detects semantic connections that may be easy to miss in a large corpus; lawyers and technical specialists then apply the governing legal and engineering standards. The invention I filed occupies that boundary. It is an effort to move beyond searching the words of a patent and toward reading the technical meaning the patent seeks to protect.

Reference

ChinSu Lee (이진수), “Method for Generating a Patent-Analysis Model Using an Artificial Neural Network and Text-Pair Embeddings, Patent-Analysis Method, and Computing Device” [English translation of title], Korean Patent Application No. 10-2024-0075102, filed June 10, 2024.

  • Application number: 10-2024-0075102
  • Filing date: June 10, 2024
  • Priority application: 10-2023-0093439 (July 18, 2023)
  • Inventor / applicant: ChinSu Lee (이진수)
  • Original Korean title: 인공신경망 및 텍스트 쌍 임베딩을 이용한 특허 분석 모델의 생성 방법, 특허 분석 방법 및 컴퓨팅 장치

Sunday, August 9, 2026

The Essence of Design-Around Is Not to Create a "Different Invention" — How Companies Transform Patent Legal Boundaries into Engineering Design Space

How companies can translate the legal boundaries of a patent into an actionable engineering design space

When a company identifies a competitor's patent, one of the most common reactions is:

“Our product looks completely different from theirs.”

In a more technically sophisticated organization, the reaction may instead be:

“Our invention is completely different from theirs as a whole.”

Both statements are dangerous starting points for a design-around analysis. The second can be particularly misleading. If a difference in product appearance creates a visual misconception, the belief that the “inventions are different as a whole” can be even more problematic because confidence in a new technical concept or superior performance may cause the team to skip the analysis that patent infringement actually requires.

Patent infringement does not ordinarily turn on how different two products or inventions appear when viewed as a whole. The first question is whether each limitation of the relevant claim, together with the relationships required among those limitations, is present in the accused product. A product may look entirely different and still raise an infringement issue if every required claim limitation is practiced. Conversely, even where two products perform similar core functions or create a similar overall impression, a substantially stronger noninfringement position may exist if a particular limitation is absent or if the claimed relationship or operating principle has been materially changed.

Suppose, for example, that an earlier patent claims the combination A+B+C, while our engineers develop a significantly improved system consisting of A+B+C+D+E. From an engineering perspective, the new system may appear to be an entirely different invention: it performs better, incorporates additional components, and may itself support patentable subject matter. But none of those facts necessarily eliminates the fact that A+B+C is still being practiced. Patentability and freedom to operate are separate questions. A later improvement may be independently patentable and nevertheless fall within the scope of an earlier, broader patent claim.

Accordingly, whenever someone in a design-around meeting says that “our invention is different as a whole,” the patent team should immediately return to a more disciplined question:

“Which limitation of each relevant independent claim is absent from our product?”

If the team cannot answer that question, the design-around analysis has not truly begun.


A Design-Around Is Not Merely a Product Modification. It Is a Corporate Risk-Management Process.

A patent design-around is the process of modifying a product's structure, component relationships, operating mechanism, or manufacturing process so that the company can deliver the function and value demanded by the market without practicing the competitor's claimed invention. The objective is not merely to build something that looks different from a competing product. More precisely, the objective is to identify the technical relationships that the patent legally protects and develop a commercially viable alternative outside those boundaries.

That is why an effective corporate design-around cannot be treated solely as a legal or engineering exercise. The team must determine which independent claims matter, which limitations may be eliminated or materially altered, whether the doctrine of equivalents remains a concern even after literal infringement is avoided, whether prosecution history estoppel or related prosecution statements narrow the patentee's available scope, and whether the prior art identifies alternative technical directions. At the same time, the company must evaluate whether the alternative can actually be manufactured at scale, whether its cost is acceptable, whether it preserves the performance customers value, and how it affects the launch schedule.

The best design-around therefore is not necessarily the design presenting the lowest conceivable legal risk. A design may be legally conservative yet commercially useless because it requires expensive new tooling or manufacturing processes. Conversely, management may rationally select an alternative that carries some residual patent risk if it can use existing production assets and preserve customer value. In practice, the optimum often lies at the intersection of legal risk, functionality, cost, manufacturability, and marketability.

For that reason, the patent team's work product should not be limited to a binary “infringement/noninfringement” conclusion. A stronger process develops multiple design alternatives and allows decision-makers to compare legal exposure, doctrine-of-equivalents risk, technical feasibility, manufacturing cost, market implications, launch timing, and residual uncertainty. The patent team's role is not to make the business decision for management. Its role is to structure the risk so that management can understand what the company gains, what it gives up, and what it remains exposed to.


More Dangerous Than Changing Appearance Is Assuming the Invention Is “Different as a Whole”

Organizations that are new to design-around work often focus heavily on changing color, size, shape, or the physical location of components. But if the patent claims do not require those visual characteristics, such differences may carry little or no significance in the infringement analysis.

Renaming a component is equally ineffective. If a patent claim refers to a “fastening screw,” calling the same structure a “fastening bolt” or “locking pin” in our drawings does not create a legal distinction. Patent infringement turns on the actual structure, function, and relationship of the component—not merely the label assigned to it. A nomenclature change is not a design-around.

Even greater caution is warranted when engineers themselves conclude that the new system constitutes an “entirely different invention.” As more features are added and a system becomes technically more sophisticated, the overall technological differences may indeed become substantial. Yet the patent question may continue to turn on something much narrower: whether the particular arrangement recited in the competitor's claim remains present.

The critical design-around question is therefore not “How much should we change?” but “What exactly should we change?”

In practice, changing the location or relationship of components may matter more than changing names or external appearance. A still stronger distinction may result from changing the path by which force, signals, or material are transmitted, or from changing the operating principle itself. Where technically feasible, the most robust alternative may be one in which the claimed element is no longer necessary at all.

Of course, there is no rule that “changing the operating principle always means noninfringement.” The ultimate conclusion remains dependent on claim construction and the particular facts. But the design question presented to R&D should generally move away from “What similar component can replace this component?” and toward “Can we solve the problem without needing this claimed arrangement at all?”


Designing the Product First and Asking the Patent Team to Justify Noninfringement Later Is the Most Expensive Form of Design-Around

In many companies, patent review still occurs near the end of the product-development process.

The company completes the design, builds prototypes, cuts tooling, orders components, prepares production plans, and only shortly before launch asks the patent team to review the product. The fundamental problem is that by the time the patent analysis begins, meaningful design changes have become commercially difficult.

If a problematic patent is identified at that point, the issue is no longer purely legal or technical. Tooling costs, certification expenses, advance component purchases, development schedules, and sales plans have already created substantial sunk costs. R&D and the business units may resist redesign by asking, “How are we supposed to change it now?” The patent team may then face pressure to find an argument that the already-completed product is noninfringing rather than to change the product itself.

At that point, design-around work can easily deteriorate into post-hoc rationalization.

More importantly, such a process may create an unfavorable factual record if litigation later arises. If a company knew of a competitor's patent and a substantial infringement concern, deliberately postponed meaningful review until redesign was practically impossible, conducted analysis principally to justify a predetermined conclusion, and continued selling without meaningful remedial action, those circumstances may make it more difficult to demonstrate that the company employed a reasonable, good-faith patent-risk management process. In the United States, the surrounding facts may become relevant to a willful-infringement analysis. Under Korean Patent Act Article 128(9), intentional infringement may also implicate enhanced damages of up to five times the determined amount of damages.

This point should not be oversimplified. Mere knowledge of a patent does not automatically establish willful infringement under U.S. law, nor should companies assume that obtaining a particular form of opinion letter is invariably required to avoid enhanced-damages exposure. The more important inquiry is what the company actually did after recognizing the patent risk: what it investigated, who participated in the analysis, what alternatives it considered, how it changed the product or otherwise managed the risk, and whether it consciously accepted a known risk without adequate response.

The preferred sequence therefore runs in the opposite direction:

Recommended Process Flow
Patent Analysis Define Legal Boundaries Derive Design Constraints Develop Multiple Alternatives Reassess Prototype Freeze Production Design Launch

The patent team should not operate merely as the final legal checkpoint that attaches legal arguments to a completed product. It should participate early enough to provide legally informed design constraints. That is why the first design-around discussion should occur during early development, when the company's legal design boundaries can still shape the engineering work.


A Design-Around Should Be Managed Through Four Different Meetings

Trying to complete a design-around project in a single meeting tends to blur roles. Patent counsel, R&D, manufacturing, marketing, and senior management are not responsible for answering the same questions. Separating the process into four stages makes it substantially clearer what must be prepared and who should make each decision.

The placement of the adversarial stress test is particularly important. It should occur before the legal boundary conditions are transmitted to R&D. If untested legal assumptions are converted into engineering requirements, the entire design effort that follows may rest on a defective premise.

Meeting 1. The Patent Team Defines the Legal Boundary First

The first meeting is not an ideation session. It is a legal preparation stage in which the patent team determines what must be changed.

The first step is to identify every relevant independent claim. Avoiding one independent claim does not mean that the entire patent has been designed around, and removing a limitation that appears only in a dependent claim does not eliminate potential infringement of its broader parent claim. Where multiple independent claims exist, each should be analyzed separately on the assumption that the patent may protect different aspects or axes of the technology. In appropriate circumstances, dependent claims may also require separate consideration, particularly where the noninfringement position depends not simply on the absence of an element but on limits imposed on the doctrine of equivalents, including limits associated with the prior art.

The claims should then be broken down limitation by limitation. Merely copying component names into a claim chart is not enough. The analysis should identify where each element is located, what it is connected to, what force, signal, or material it transmits, and what claimed relationships produce the recited function.

The prosecution history should then be reconstructed chronologically. What did the claims originally recite? Which prior-art references led to rejection? What arguments did the applicant make? Which limitations were added or narrowed? How did the issued claims ultimately distinguish the prior art? For design-around purposes, understanding why particular language entered the claim may be more useful than simply summarizing the issued claim text.

Prior art should not be viewed solely as potential invalidity material. Invalidity analysis and design-around analysis are separate exercises, but the prior art may reveal which portions of the technical landscape the patentee had to leave behind in order to secure allowance. If the patent obtained its current scope by distinguishing an earlier technical approach, a competitor may be able to explore a design that moves back toward that prior-art territory.

The final work product from Meeting 1 should not be a memorandum merely stating that “there is a risk of infringement.” It should identify legal boundary conditions and priorities for technical modification that R&D can actually use.

Meeting 2. Stress-Test the Legal Boundary from the Adversary's Perspective

The fact that the patent team has developed a legal-boundary analysis does not mean that the analysis has been adequately tested. The longer a team works with its own claim construction, the greater the risk of confirmation bias. A favorable construction may begin to feel self-evident; the prosecution history may be interpreted selectively; and the team may become overly confident that the prior art supports the preferred conclusion.

The purpose of the second meeting is to break that bias before the analysis reaches R&D. Once a faulty legal assumption becomes an engineering requirement, substantial engineering resources may be consumed before the weakness is discovered.

Meeting 2 should therefore be an intentional adversarial stress test. The patent team—or, where appropriate, outside counsel—should attack the Meeting 1 analysis from the patent owner's strongest plausible perspective.

“The element you classified as missing is substantively the same structure under a different name.”

“The allegedly different element was merely relocated, while the same claimed technical relationship remains.”

“Under the function-way-result test used in U.S. doctrine-of-equivalents analysis—or the applicable Korean equivalence framework—the accused feature could still be treated as equivalent.”

“The scope surrendered during prosecution is not as broad as your design-around theory assumes.”

“The prior art on which you rely is materially different from the structure now under review.”

Only after the strongest reasonably available attacks have been formulated should the company determine whether the proposed legal boundary remains defensible. The output of Meeting 2 is therefore a set of validated legal boundary conditions, with vulnerabilities either corrected or expressly identified. Only those validated conditions should move forward to Meeting 3.

Meeting 3. Translate the Validated Legal Boundary into Engineering Questions

R&D—and, where appropriate, manufacturing and marketing—joins the process in the third meeting. At this stage, the most important function of the patent team is not simply to explain the claims. It is to translate the validated claim analysis into questions that engineers can actually design against.

Telling engineers merely to “make something that does not infringe this patent” gives them little guidance about what needs to change. More useful questions might include:

  • “Can we eliminate the internal support relationship within the housing?”
  • “Can we replace the direct coupling with a different force-transmission path?”
  • “Can we achieve the same function through linear motion rather than rotational motion?”
  • “Can we design the system so that this particular fastening element is unnecessary?”

Patent counsel should define the relevant legal boundaries and risk factors, but should not attempt to monopolize judgments regarding engineering feasibility, performance, safety, or manufacturability. The preferable structure is iterative: R&D proposes multiple solutions outside the identified legal boundary, and the patent team evaluates each solution against the relevant claims.

Multiple design alternatives should be developed at this stage. A project that depends on only one design-around option can quickly run out of room if the legal assessment weakens, manufacturing cost proves excessive, or the alternative fails to meet customer requirements.

Design-around work is therefore less about finding one correct answer than about expanding the company's available design space.

Meeting 4. Convert the Patent Problem into a Management Decision

The fourth meeting compares technically viable alternatives from legal, engineering, and business perspectives. Because the underlying legal-boundary analysis was already subjected to adversarial testing in Meeting 2, the focus can now shift toward the relative defensibility and commercial practicality of each proposed design.

The first inquiry is whether each alternative avoids literal infringement of every relevant independent claim. If a defense depends on only one changed limitation, an adverse claim construction concerning that single limitation may collapse the entire position. Where feasible, it is generally preferable to create multiple absent or materially different limitations.

The team should next assess doctrine-of-equivalents risk. Is the difference merely one of terminology? Has a component simply been moved slightly? Or has the manner in which the function is achieved materially changed? The question should be tested from the perspective of a sophisticated adverse patent owner. The team should also determine how strongly the prosecution history and prior art support the proposed distinction.

The analysis then reaches questions that patent counsel cannot answer alone. Can the alternative actually be manufactured? Does it require new tooling? Will the part count increase? Will yield decline? Can the key performance characteristics valued by customers be maintained? How much will launch be delayed? What sunk costs in inventory and equipment will be affected?

At that point, the question changes from “Which design is safest?” to “Which design is best for the company?”

The patent team should not make that decision on management's behalf. It should explain which alternatives present stronger noninfringement positions, where each theory is vulnerable, and what residual patent risk remains. R&D should assess technical feasibility. Manufacturing should address production feasibility and cost. Marketing should define the minimum customer-value requirements. Senior management should then decide which risks the company is prepared to accept. This allocation of responsibility allows design-around work to function not as a legal prohibition mechanism, but as a corporate decision-making system.

A robust design-around rarely depends on a single distinction. Multiple missing or materially different limitations, separate defenses for separate independent claims, support from the prosecution history, support from the prior art, and meaningful differences in technical operating principle can combine to create a layered and substantially more resilient defense.


The Question “Can You Guarantee That It Does Not Infringe?” Requires a Different Kind of Answer

As a design-around project nears completion, a CEO or head of R&D will often ask:

“So can we now say that this product definitely does not infringe?”

That is rarely a question that should be answered with an unqualified “yes.”

First, claim construction carries uncertainty. Second, avoiding literal infringement does not necessarily eliminate the doctrine of equivalents. Third, other relevant patents may exist that were not included in the particular analysis. Designing around one patent is not the same thing as establishing complete freedom to operate for the product.

There is an additional practical consideration that is even more important.

There is no guarantee that the product ultimately manufactured and sold will remain identical to the product reviewed by the patent team, and the ultimate adjudication of infringement belongs to an independent decision-maker—not to the company itself. No matter how well-founded the company's noninfringement analysis may be, there is no assurance that a court in an actual dispute will adopt the same claim construction or legal assessment.

The patent team's report therefore should not end with the categorical statement, “This product does not infringe.” A more disciplined formulation would be:

“Based on the patents reviewed and the final design drawings presently provided, this design presents the most layered noninfringement position among the alternatives considered. This assessment, however, is based on the currently available record and our present legal and technical analysis, and it cannot guarantee that a court in an actual dispute would adopt the same claim construction or infringement determination. Any material change to the production or commercial product should be submitted for renewed review.”

The objective of a sound design-around analysis is not to manufacture a larger number expressing confidence. It is to make clear why the company reached its conclusion and which facts and assumptions that conclusion depends upon.


A Design-Around Does Not End at Design Freeze

Even an excellent design-around analysis becomes unreliable if the product reviewed by the patent team differs from the product ultimately sold.

After launch, procurement may adopt a substitute component to reduce cost. Manufacturing may make a minor structural modification to improve assembly. A supplier may use a different specification because of component shortages. An engineer may restore part of an earlier configuration to improve performance.

A seemingly minor modification may inadvertently reintroduce the very claim limitation that the design-around intentionally removed.

Design Freeze therefore is not merely a project-management milestone. It is also an important patent-risk control point. The CAD files, bill of materials, prototypes, and other specifications underlying the legal review should correspond to the actual production configuration. Material design changes should be subject to a change-control process that prevents implementation in production without appropriate patent-team review. When the post-launch product specification changes materially, the modified product should again be compared against all relevant independent claims.

Design-around work does not end on the day an opinion or internal memorandum is finalized. It is a lifecycle-management activity that continues for as long as the commercial product must preserve the design features on which the noninfringement position depends.


The Patent Team's Role Must Evolve from Risk Detection to Design-Space Creation

The easiest statement for a corporate patent team to make is, “This is risky. Do not do it.” But the business does not need the patent team merely to identify the existence of risk.

A more sophisticated patent organization should be able to say:

“The current configuration presents risk under this independent claim. If we eliminate this coupling relationship or materially change the operating principle, however, we can create a substantially stronger noninfringement position. The first approach may increase cost, while the second may affect performance, so R&D and manufacturing should develop multiple alternatives for comparison.”

The patent team is not the product designer. Engineers, in turn, are not responsible for construing patent claims.

The patent team defines legal boundaries and risk factors. R&D develops technical solutions outside those boundaries. Manufacturing evaluates scalability and cost. Marketing defines the minimum acceptable customer value and product specifications. Management weighs the remaining risk against the expected commercial benefit.

The patent team's role ultimately should expand beyond risk detection to encompass risk translation, risk structuring, and design-space creation.


In Design-Around Work, Prior Art Is More Than Material for Attacking a Patent

Prior art plays a distinctive role in design-around strategy.

In conventional patent practice, one of the most direct reasons to search prior art is to challenge novelty or nonobviousness. In design-around work, however, the prior art can also function as a map showing the company where the product may be moved.

Suppose a patent applicant distinguished prior-art configuration A by adding relationship B to the claim and arguing that the invention differed from A because of B. A competitor's only option is not necessarily to modify B slightly. In some circumstances, the stronger strategy may be to remove B altogether and move the design back toward the technical territory occupied by A or a neighboring prior-art approach.

This approach may provide value beyond avoiding the literal language of the claim. If the patent owner later attempts to expand the claim through the doctrine of equivalents far enough to capture the alternative design, the accused infringer may be able to argue that the asserted range of equivalents would improperly encompass the prior art. In U.S. patent law, this principle is commonly analyzed through the ensnarement doctrine, associated with cases including Wilson Sporting Goods Co. v. David Geoffrey & Associates in the Federal Circuit. Korean Supreme Court doctrine likewise recognizes limitations on the application of equivalents where the asserted scope would improperly extend into territory associated with the prior art.

A critical design-around question is therefore:

“What did this patent have to distinguish from the prior art in order to obtain its present scope?”

The next question is:

“Can we move our design back to the other side of that boundary?”

This is why reading only the words of the issued claims may not reveal the patent's most commercially useful boundary. The company should understand why particular language entered the claim in the first place and how that language emerged from the applicant's interaction with the prior art. A strong design-around converts that history into usable engineering design space.


Corporate Patent Counsel Can Help Change the Facts of a Future Dispute

Traditional legal education usually applies law to facts that have already occurred. The product already exists. The patent claims are fixed. The task is to compare the two and determine whether infringement has occurred.

Corporate design-around work is different.

The product can still be changed.

In other words, the company is presently creating the factual record that a court may one day be asked to evaluate.

For that reason, a corporate IP professional should not merely attempt to predict whether a court would find the present product infringing. The more valuable role is to intervene in the development process early enough to alter the structure of the future product in a direction that creates a more defensible factual record.

The process involves breaking the claim into limitations, using the prosecution history to identify legal boundaries, locating alternative technical space in the prior art, and translating those findings into engineering constraints. When engineers propose new structures, those alternatives are compared against the claims again, stress-tested from an adversarial perspective, and presented to management together with the remaining risks and costs.

In that process, the language of patent law becomes the language of engineering, and engineering alternatives are then translated into the language of management.

That is what it means to operate a design-around process effectively inside a company.


In the end, the objective of an effective design-around is neither to produce “a product that looks completely different from the competitor's product” nor to create “an invention that is completely different as a whole.”

The objective is to identify precisely the technical relationships legally protected by the competitor's patent, develop a commercially viable technical solution outside those relationships, and ensure that the company understands and manages the residual risk associated with that choice.

That is the essence of designing around a patent.

Saturday, July 18, 2026

[특허 회피설계 강좌] 제9장 균등침해 법리의 시작 GRAVER TANK 사건

균등침해 회피설계 II — Graver Tank: 미국 균등론의 출발점 | 특허 회피설계 강좌 제9장

균등침해 회피설계 II
Graver Tank — 미국 균등론 법리의 출발점

이번 편에서는 미국 균등론(doctrine of equivalents)의 대명사로 불리는 Graver Tank & Mfg. Co. v. Linde Air Products Co. 판결을 깊이 들여다봅니다. 1950년 연방대법원이 내린 이 판결은 왜 70년이 지난 지금도 균등론의 기점으로 인용되는지, 그리고 판결 안에 이미 상반된 두 가치의 긴장이 어떻게 내재해 있는지를 살펴봅니다.

Graver Tank & Mfg. Co. v. Linde Air Products Co.
339 U.S. 605, 85 USPQ 328 (1950) · 미국 연방대법원

A. 균등론의 정책적 근거 — 두 가치의 긴장

균등론은 처음부터 단순한 기술적 판단 기준이 아닙니다. 특허법이 오래전부터 인정해 온 두 가지 핵심 정책 사이의 균형 문제에서 출발합니다.

한쪽에는 공중의 고지 기능(notice function)이 있습니다. 특허권은 제한된 배타권(limited right to exclude)이므로, 경쟁자와 공중은 청구항을 읽고 "어디까지가 금지 영역이고 어디서부터가 자유로운 기술 공간인지"를 알 수 있어야 합니다. 이것이 35 U.S.C. § 112 제2문단이 청구항의 명확성을 요구하는 이유입니다.

다른 한쪽에는 발명자의 실질적 보호가 있습니다. 미국 헌법에 구현된 특허법의 목적은 발명자에게 그 발명에 대한 권리를 보장하는 것입니다. 법원은 오래전부터 형식(form)보다 실질(substance)이 우선해야 한다고 인정해 왔습니다.

공중 보호 논리 발명자 보호 논리
청구항은 권리범위를 명확히 알려야 한다 청구항 문언의 사소한 회피를 허용해서는 안 된다
경쟁자는 청구항을 보고 설계회피할 수 있어야 한다 말장난으로 발명의 이익을 빼앗아서는 안 된다
예측 가능성이 중요하다 실질적 정의가 중요하다

Graver Tank의 핵심은 이 판결이 균등론을 일방적으로 특허권자에게 유리한 법리로 제시하지 않는다는 점입니다. 출발점부터 두 가치 사이의 균형 문제로 접근합니다. 이 긴장은 이후 Federal Circuit의 수십 년 판례 역사를 관통하는 근본 문제이기도 합니다.

언어주의(Verbalism)를 넘어 — 균등론이 생겨난 이유

연방대법원은 Graver Tank에서 균등론이 필요한 이유를 명쾌하게 설명합니다.

"노골적이고 정면적인 복제는 단순하고 매우 드문 침해 유형이다. 그런 복제만 금지한다면 발명자는 언어주의(verbalism)의 지배 아래 놓이게 되고, 실질이 형식에 종속될 것이다. 이는 발명자에게 발명의 이익을 박탈하고, 특허제도의 주요 목적 중 하나인 발명의 공개(disclosure)보다 은폐(concealment)를 조장할 것이다. 균등론은 이러한 경험에 대응하여 발전하였다. 이 법리의 본질은 누구도 특허에 대한 사기(fraud on a patent)를 행할 수 없다는 데 있다."

이 문단에서 핵심 표현은 "at the mercy of verbalism"입니다. 청구항은 언어로 쓰이기 때문에 불가피하게 불완전합니다. 기술은 다양하게 변형될 수 있고, 같은 기능을 수행하는 대체 수단은 무수히 많습니다. 경쟁자가 청구항의 단어 하나만 교묘히 바꾸어 발명의 실질을 가져간다면, 문언만 보아 비침해라고 하는 것은 불합리합니다.

또한 연방대법원은 균등론을 발명의 공개 유인과 연결합니다. 특허제도는 공개의 대가로 배타권을 부여합니다. 그런데 공개된 발명을 경쟁자가 형식적으로만 변형하여 자유롭게 이용할 수 있다면, 발명자는 발명을 공개할 유인 자체를 잃게 됩니다. "fraud on a patent"는 실제 사기죄가 아니라, 특허제도의 목적을 잠탈하는 실질적 모방을 비유한 표현입니다.


B. 사실관계 — Jones 특허와 Lincolnweld 660

Graver Tank 사건의 기술적 사실관계는 단순하면서도 균등론의 전형적인 구조를 보여줍니다.

Linde Air Products가 보유한 Jones 특허는 전기용접 조성물(flux)에 관한 것으로, 핵심 청구항은 알칼리 토금속 규산염(alkaline earth metal silicate)불화칼슘(calcium fluoride)의 조합을 요구했습니다. 특허 제품 Unionmelt Grade 20은 마그네슘 규산염(magnesium silicate)을 사용했습니다.

피고 Graver Tank의 제품 Lincolnweld 660은 망간 규산염(manganese silicate)을 포함했습니다. 문제는 망간(manganese)이 알칼리 토금속이 아니라는 점입니다. 따라서 피고 제품은 청구항 문언을 그대로 충족하지 않습니다.

항목 특허 제품 (Unionmelt Grade 20) 피고 제품 (Lincolnweld 660)
핵심 성분 마그네슘 규산염 (알칼리 토금속) 망간 규산염 (알칼리 토금속 아님)
문언침해 청구항 충족 불충족 — 문언침해 없음
작동 방식 동일 동일
용접 결과 같은 종류·품질 같은 종류·품질
쟁점 망간이 알칼리 토금속 규산염의 균등물인가?

function-way-result 테스트 — 전통적 균등성 판단 기준

연방대법원은 쟁점을 명확히 설정합니다. 마그네슘을 망간으로 대체한 것이 균등론 적용을 불가능하게 할 만큼 실질적인 변경(substantial change)인가, 아니면 그 상황에서 너무 비본질적이어서(so insubstantial) 균등론 적용이 정당한 변경인가?

이 질문을 판단하기 위해 연방대법원이 제시한 기준이 바로 이후 균등론의 전통적 테스트로 자리 잡은 function-way-result 테스트입니다.

Function-Way-Result Test (Graver Tank, 1950)
Function 피고 장치가 특허발명과 실질적으로 동일한 기능을 수행하는가?
Way 그 기능을 실질적으로 동일한 방식으로 수행하는가?
Result 동일한 결과를 얻는가?

세 요소를 모두 충족하면 피고 제품은 특허발명의 균등물을 사용한 것으로 평가될 수 있습니다. 다만 이 테스트는 수학 공식처럼 기계적으로 적용되는 것이 아닙니다. 후속 판례에서 특히 "way"(방식) 요소가 매우 중요해집니다. 같은 기능과 결과를 얻더라도 작동 방식이나 구조가 실질적으로 다르면 균등성이 부정될 수 있습니다.

균등성은 "공식의 포로"가 아니다 — 맥락적·종합적 판단

Graver Tank를 function-way-result 테스트로만 기억하면 판결의 가장 중요한 부분을 놓칩니다. 연방대법원은 균등성 판단에 대해 이렇게 말합니다.

"무엇이 균등에 해당하는지는 해당 특허의 맥락, 선행기술, 그리고 사건의 구체적 사정에 비추어 판단해야 한다. 특허법에서 균등성은 어떤 공식의 포로가 아니며, 맥락 없이 추상적으로 판단되는 절대적 개념도 아니다."

균등성은 물질이나 부품 자체의 추상적 동일성이 아닙니다. 중요한 것은 해당 특허의 맥락에서, 해당 기능을 수행하는 데 있어, 당업자(person skilled in the art)가 두 수단을 상호 대체 가능하다고 인식했는지입니다.

망간과 마그네슘은 화학적으로 다른 원소입니다. 그러나 전기용접 플럭스라는 특정 맥락에서, 두 성분이 같은 목적과 기능을 수행하고 당업자가 이를 대체 가능한 것으로 알고 있었다면 균등물로 볼 수 있습니다. 같은 두 물질이라도 배터리 양극재, 의약품, 반도체 등 다른 기술 분야에서는 전혀 다른 균등 판단 결과가 나올 수 있습니다.

증거 평가 — 균등성은 사실(fact) 문제

연방대법원이 Lincolnweld 660에서 균등침해를 인정한 것은 추상적 법리가 아니라 구체적 증거에 기반했습니다.

  • 전문가 증언: 금속학자는 알칼리 토금속이 망간 광석에서 자주 발견되며, 용접 플럭스에서 같은 목적을 수행한다고 증언하였습니다.
  • 선행기술 특허: 마그네슘 규산염과 망간 규산염을 용접 플럭스에 동일한 목적으로 사용하는 것을 가르친 선행기술 특허 두 건이 있었습니다.
  • 독립 연구 증거의 부재: Lincolnweld가 독자적 연구와 실험의 결과로 개발되었다는 증거가 없었습니다. 법원은 이를 근거로 독립 발명이 아닌 모방으로 추론하였습니다.

연방대법원은 이러한 증거를 검토한 후 "균등론 적용에 이보다 더 적절한 사건을 상상하기 어렵다"고 밝혔습니다. 문언침해를 피하기 위한 변경은 "형식적인 것에 불과(colorable only)"하다고 평가하였습니다.

이 대목은 실무적으로 중요합니다. 균등성은 법리만으로 결정되지 않습니다. 전문가 증언, 선행기술 문헌, 제품 개발 경위, 내부 문서 등 실질적 증거가 균등 판단을 뒷받침하거나 반박할 수 있습니다.


C. Black 대법관의 반대의견 — 청구항 중심주의와 예측 가능성

Graver Tank 다수의견만큼 중요한 것이 Black 대법관의 반대의견입니다. 이 반대의견은 현대 Federal Circuit이 균등론을 제한해 온 논리의 원형(prototype)을 제공합니다.

① 청구항이 권리범위의 기준이다

Black은 균등론이 발명을 "명확하고 특정적으로 청구해야 한다"는 법률상 요건(35 U.S.C. § 112)과 충돌한다고 보았습니다. 그의 논리는 명쾌합니다. 특허권자에게 부여되는 권리의 범위를 정하는 것은 청구항입니다. 명세서에 망간 규산염의 사용이 기재되어 있더라도, 그것을 청구항을 확장하는 데 사용할 수는 없습니다.

"특정적으로 청구되지 않은 것은 공중에게 바쳐진 것이다 (What is not specifically claimed is dedicated to the public)." — Black 대법관

② 균등론은 경쟁자의 예측 가능성을 해친다

Black은 균등론이 제조업자들로 하여금 법원이 청구항을 어떻게 해석할지 예측하기 불가능하게 만든다고 우려했습니다. 경쟁자는 청구항을 읽고 설계회피를 했는데, 나중에 법원이 "실질적으로 같다"고 판단한다면 청구항의 고지 기능은 사실상 공허해집니다. 이 불확실성은 연구개발 투자와 시장 경쟁을 위축시킵니다.

③ 재발행(reissue) 제도가 있다

Black은 특허권자가 청구항을 너무 좁게 작성한 실수는 법이 정한 재발행(reissue) 제도를 통해 수정할 수 있다고 보았습니다. 법원이 균등론으로 청구항을 사후에 넓혀 주면, 의회가 재발행에 대해 부과한 엄격한 요건과 제한을 우회하는 결과가 됩니다.

Black 반대의견의 핵심 명제 — 현대 균등론 제한의 원형
  • 특허권 범위는 청구항이 정한다. 명세서로 청구항을 확장할 수 없다.
  • 청구되지 않은 것은 공중의 자유 영역이다.
  • 균등론의 예측 불가능성은 경쟁을 해친다.
  • 청구 실수는 재발행 제도로 해결해야 한다. 법원의 사후 확장은 부당하다.
  • 무효로 판단된 넓은 청구항 범위를 균등론으로 사실상 회복해서는 안 된다.

이 반대의견이 후대에 얼마나 중요해졌는지는, 이후 Introduction에서 정리한 Federal Circuit의 네 가지 변화를 떠올리면 알 수 있습니다. 청구항의 고지 기능 중시, 특정적 배제(specific exclusion) 원리, 구성요소별 접근 — 이 모든 흐름의 정책적 뿌리가 Black의 반대의견에 있습니다.


Graver Tank가 남긴 과제

1950년 연방대법원은 Graver Tank에서 균등론 적용의 정책과 지침을 명확히 제시했습니다. 그러나 이 지침은 매우 유연하고 맥락적입니다. 따라서 후속 법원이 이를 어떻게 적용하느냐에 따라 균등론의 실제 범위가 달라집니다.

1982년 이후 특허 항소 사건은 Federal Circuit이 전속적으로 담당하게 되었습니다. Graver Tank의 원칙을 실제 사건에 적용하고 구체화하는 역할은 Federal Circuit의 과제가 된 것입니다.

그 과제의 답은, 앞선 편에서 정리했듯이, 균등론을 점차 제한하는 방향이었습니다. 다음 편에서는 초기 Federal Circuit이 Graver Tank의 전통적 접근을 어떻게 받아들였는지, 그리고 어느 시점에 전환이 시작되었는지를 살펴봅니다.

실무적 시사점 정리

  • 문언침해가 없다고 곧바로 비침해가 아닙니다. 대체 구성요소가 동일한 기능을 같은 방식으로 수행하여 같은 결과를 내고, 당업자가 대체 가능성을 알고 있었다면 균등침해가 문제될 수 있습니다.
  • 균등성은 증거 문제입니다. 전문가 증언, 선행기술 문헌, 제품 개발 경위, 내부 문서가 모두 중요합니다.
  • 청구항 작성이 결정적입니다. 보호받고 싶은 대체재가 있다면 청구항에 포함시키거나, 명세서와 종속항 전략을 통해 보호 가능성을 확보해야 합니다.
  • 설계회피는 단순한 명칭 변경으로는 부족합니다. 성공적인 설계회피는 기능·방식·결과 중 특히 방식과 구조에서 실질적 차이를 만들어야 합니다.
  • Black 반대의견을 함께 읽어야 합니다. Graver Tank를 다수의견만으로 이해하면 균등론의 현대적 제한 흐름을 놓치게 됩니다.

관련 해설 영상


다음 편 예고

다음 편에서는 III. The Early Federal Circuit Approach to DOE를 다룹니다. Graver Tank 이후 Federal Circuit이 초기에 균등론을 어떻게 받아들였는지, 특히 Hughes Aircraft 사건에서 청구항 전체와 피고 장치 전체를 비교하는 전통적 접근을 어떻게 유지했는지를 살펴봅니다. 이 섹션은 다음 IV. Pennwalt에서 등장할 구성요소별 접근(element-by-element approach)으로의 전환을 이해하기 위한 대비점입니다.

본 강좌는 Patrick G. Burns et al., Designing Around Valid U.S. Patents (Patent Resources Group, Inc., 2005)를 기반으로 재구성하였습니다.

© 2026 All rights reserved.

Friday, July 17, 2026

청구항 요소와 한정의 구별 — Kustom Signals 판례와 한정 사항 기록관리 원장(Limitation Ledger) 실무 가이드

미국 특허 소송의 성패는 청구항 문언을 어떻게 분해하고 법리적으로 재구성하느냐에 달려 있습니다. 특히 침해 판단의 대원칙인 전요소원칙(All-Elements Rule)을 적용함에 있어, 무엇을 독립된 '요소(Element)'로 식별하고 이를 '한정사항(Limitation)'과 어떻게 구별할 것인지의 문제는 승소를 위한 전략적 기틀이 됩니다. 아래에서는 이들의 법리적 구별 실무와, 접속사 해석의 이정표가 된 Kustom Signals 사건을 심층 분석하고, 이를 실전에 적용하기 위한 한정 원장(Limitation Ledger) 프레임워크까지 함께 살펴봅니다.


1. 서론: 특허 범위 확정의 기초 — 요소(Element)와 한정(Limitation)

미국 특허 소송 실무에서 청구항 해석의 첫 단추는 각 문언의 법적 성격을 규정하는 것입니다. 이를 소홀히 할 경우, 균등론(DOE) 적용 단계에서 치명적인 논리적 허점이 발생하게 됩니다.

역사적 맥락과 용어의 정의

과거 Corning Glass Works v. Sumitomo Electric 사건 이전의 실무에서는 'Element'라는 용어가 청구항의 문언적 구성과 피고 제품의 물리적 부품 모두에 혼용되어 상당한 법리적 혼란을 야기했습니다. 이후 Festo 전원합의체 판결을 거치며 현대 실무에서는 이를 엄격히 권고된 용어법에 따라 구별합니다.

한정사항(Limitation): 특허권을 제한하는 청구항 상의 '문언 그 자체'를 의미합니다. 단순한 물리적 부품에 국한되지 않고, 기능적 구성(configured to), 공간적·논리적 관계, 수치 범위, 부정적(Negative) 한정까지 포괄하는 상위 개념입니다.

요소(Element): 청구항의 한정사항에 대응하여 피고 제품이나 방법에서 발견되는 '구체적인 대응부'를 지칭합니다.

"So What?" Layer: '단어'와 '한정'의 전략적 대조

실무자는 청구항 내의 모든 '중요한 단어(Claim Term)'가 곧 '독립된 한정사항(Claim Limitation)'은 아니라는 점을 명확히 인지해야 합니다. 관사나 단순한 문법적 연결어는 해석의 지표는 될지언정, 그 자체가 독립적인 침해 대응 가치를 지니는 한정사항으로 기능하지 않는 경우가 많습니다. 이 구별을 명확히 하지 못하면, 전요소원칙 적용 시 불필요한 단어 하나를 독립된 요소로 오인하여 균등론의 문턱을 스스로 높이는 우를 범하게 됩니다.


2. 청구항 분해 방법론: "원자적 범위제한 명제"의 도출

청구항을 분석 가능한 최소 단위로 분해하는 과정은 단순한 문장 끊기가 아닌, 발명의 '논리적 지도'를 그리는 작업입니다.

분해 기법: 대상-행위-속성-조건의 결합

실무자는 청구항 문언을 "원자적 범위제한 명제" 단위로 분해해야 합니다. 예를 들어, "임계치를 초과할 때 데이터를 전송하도록 구성된 제어기"라는 문구는 다음과 같이 분해됩니다.

  • 대상: 제어기(Controller)
  • 기능적 속성: 전송하도록 구성됨(Configured to transmit data)
  • 조건: 온도가 임계치를 초과할 때(When temperature exceeds a threshold)

검증 체계: 분해 오류 방지를 위한 3대 시험법

전문가는 다음 시험법을 통해 분해의 적절성을 상시 검증해야 합니다.

  1. 삭제시험: 해당 명제를 삭제했을 때 청구범위가 기술적으로 유의미하게 확장되는가? 변화가 없다면 이는 독립된 한정이 아닐 가능성이 큽니다.
  2. 대응시험: 피고 제품에서 이 명제에 대응하는 독립적인 기술적 구현부(Element)를 특정할 수 있는가?
  3. 전체성시험: 분해된 명제들의 합이 발명의 본질적 기술 사상을 왜곡 없이 재현하는가?

과도한 세분화는 '가짜 요소'를 만들어 균등론 적용을 차단하며, 과도한 일반화는 '요소 누락'을 초래하여 특허를 무효화의 위험에 노출시킵니다.


3. 한정별 분석 원칙: 침해 및 유효성 판단의 법리적 적용

분해된 각 한정사항은 특허의 권리 행사와 방어 시 서로 다른 논리로 작동합니다.

침해 및 균등론(DOE)의 논리식

Warner-Jenkinson 판결에 따라 침해는 발명 전체가 아닌 '개별 한정사항별'로 판단됩니다. 침해 인정 조건을 논리식으로 표현하면, 각 한정이 문언적으로(Literal) 또는 균등물에 의해(Equivalent) 충족되어야 하며, 단 하나라도 누락된다면 침해는 성립하지 않습니다. 개방형 전환구 comprising이 추가 요소를 허용하긴 하지만, 본문에서 명시한 배타적 선택(XOR)이나 특수한 논리 관계를 무력화할 수는 없습니다.

유효성 판단과 전략적 경고

신규성(§102) 판단에서는 단일 선행기술이 청구항의 모든 한정을 명시적 또는 '내재적 공개(Inherent Disclosure)' 방식으로 포함해야 합니다. 특히 Brown v. 3M의 시사점은 중요합니다. 'A or B'와 같은 대안적 청구에서 단 하나의 종(Species)이라도 선행기술에 알려져 있다면 청구항 전체가 무효화될 수 있습니다. 출원 시 'or'를 전략적으로 사용하는 것에 극도의 주의가 필요한 이유입니다.


4. Kustom Signals 사건 (264 F.3d 1326) 심층 사례 분석

이 사건은 문법적 단어인 'or'를 물리적 요소로 오인했을 때 발생하는 법리적 참사를 보여준 기념비적 판례입니다.

기술적 쟁점: 선택형 vs. 자동 이중 검색

특허권자 Kustom Signals의 레이더는 운영자가 '최고속(fastest)' 또는(or) '최강 신호(strongest)' 검색 모드 중 하나를 선택하도록 설계되었습니다. 반면 피고 제품은 두 모드를 항상 동시에 수행하는 '자동 이중 검색(Automatic dual search)' 방식을 채택했습니다.

해석의 충돌과 CAFC의 법리 정정

지방법원은 'or' 자체를 하나의 독립적인 물리적 요소로 해석하는 치명적 오류를 범했습니다. 피고 제품이 두 기능을 동시에 수행하자 'or(선택)'라는 요소가 부재한다고 보아 균등침해까지 부정했습니다. CAFC는 이를 다음과 같이 바로잡았습니다.

구분 잘못된 분석 (지방법원) 올바른 분석 (CAFC)
요소 1 Fastest search mode Fastest search mode
요소 2 Strongest search mode Strongest search mode
요소 3 "or" (접속사를 요소로 취급) (해당 없음)
법리 "or"가 없으므로 균등침해 부정 "or"는 문법적 표현일 뿐 요소가 아님

CAFC는 'or'가 대안적 요소를 표시하기 위한 '문법적 표현'이지, 장치의 물리적 부품이나 방법의 단계가 아니라고 판시했습니다. 비록 문언침해는 배타적 선택 한정 위반으로 부정되었으나, 접속사의 부재를 이유로 균등론 적용 자체를 차단해서는 안 된다는 점을 명확히 한 것입니다.


5. 균등론의 한계 법리 및 실무적 방어 전략

균등론은 전지전능한 무기가 아니며, 강력한 제한 원칙들에 의해 통제됩니다.

  • 출원경과 금반언(Prosecution History Estoppel): Festo 판결에 따라 보정으로 축소된 범위는 균등론이 배제됩니다. 이를 번복하려면 ①예측 불가능성, ②주변적 관련성(보정 이유와 침해 쟁점이 무관함), ③기타 언어적 한계 등을 입증해야 합니다.
  • 한정 소거 금지(Vitiation): Deere & Co. 판례에서 보듯, 특정 한정의 의미를 사실상 무의미하게 만드는 수준의 확장은 허용되지 않습니다. '외부' 배치를 '내부'까지 확장하여 위치 한정을 소거하는 경우가 대표적입니다.
  • 공개-공중헌납 원칙: Johnson & Johnston 판례에 따라 명세서에 기재했으면서 청구항에 넣지 않은 대안은 공중에 헌납된 것으로 간주되어 균등론 적용이 불가합니다.

6. 통합 실무 프레임워크: 한정 원장(Limitation Ledger)

한정 원장(Limitation Ledger)이란 청구항을 단순한 '단어의 나열'로 보지 않고, 특허의 보호범위를 제한하는 최소 단위인 '원자적 범위제한 명제(Atomic Range-limiting Proposition)'로 분해하여 체계적으로 관리하는 통합 실무 프레임워크입니다.

특허침해 소송과 무효 심판을 동시에 진행할 때, 권리자나 피고 모두 논리적 모순에 빠지기 쉽습니다. 침해를 주장할 때는 청구범위를 넓게 해석하다가, 특허의 무효화를 방어할 때는 선행기술을 피하기 위해 청구범위를 좁게 해석하는 모순이 발생합니다. 한정 원장은 이러한 해석의 논리적 모순을 방지하고 일관된 '대칭성(Symmetry)'을 유지하도록 돕는 강력한 안전장치입니다.

한정 원장의 핵심 필드 구성

  • 한정 ID: 개별 한정사항을 식별하는 고유 번호 (L1, L2…)
  • 정확한 청구 문언(Claim Term): 청구항에 기재된 실제 텍스트
  • 완결된 한정 명제(Limitation): 대상-행위-속성-조건이 결합된 기술적·법적 판단 최소 단위
  • 유형(Type): 구조, 단계, 기능, 관계, 조건, 수치, 대안 등
  • 명세서/도면 근거: 발명의 상세한 설명 및 도면 상의 지지 영역
  • 출원경과(Prosecution History): 심사 과정에서의 보정 및 의견서 제출을 통한 제한 여부
  • 침해/유효성 판단 결과: 문언/균등 침해 여부 및 신규성/비자명성 분석 결과

시뮬레이션 ①: 지문 센서 특허 vs. 얼굴 인식 장치

다음은 휴대용 생체 인증 장치 특허와 피고의 얼굴 인식 장치 사이의 침해 분쟁을 가상으로 시뮬레이션한 한정 원장 예시입니다.

대상 청구항 (가상): A portable authentication device comprising: a fingerprint sensor; a processor configured to compare a sensed fingerprint with stored reference data; and a housing in which the fingerprint sensor and processor are disposed.

ID 청구 문언 원자적 한정 명제 유형 명세서 근거 침해/유효성 쟁점
L1 a fingerprint sensor 지문 패턴을 직접 감지하는 물리적 센서 구조적 요소 [Col 2:05] 얼굴인식 카메라와의 균등성 — Vitiation 위험 및 출원경과 금반언 적용
L2 compare a sensed fingerprint 취득한 지문 데이터와 참조 데이터를 비교 연산하는 기능 기능적 속성 [Fig 5] 접촉식 융선 분석과 비접촉식 광학 분석 간 작동 방법(Way)의 실질적 차이
L3 a housing in which... are disposed 센서와 프로세서가 단일 하우징 내부에 함께 배치되는 공간적 관계 공간적 관계 [Col 3:10] 분리형 하우징 선행기술에서 공간 관계 차이로 신규성 유지 가능
전문가 팁: 대칭성(Symmetry) 유지

침해 입증을 위해 L1을 '생체인식' 전체로 넓게 해석하고자 한다면, 그 대가로 선행기술의 포섭 범위도 넓어져 특허가 무효화될 위험이 커짐을 직시해야 합니다. 한정 원장은 침해 주장 범위와 무효 항변 범위를 하나의 표에서 실시간 검증함으로써, 소송 대리인이 스스로 논리적 모순에 빠지는 법리적 재앙을 차단해 줍니다.

시뮬레이션 ②: Kustom Signals 사건 한정 원장 적용

다음은 Kustom Signals, Inc. v. Applied Concepts, Inc.(미국 특허 제5,528,246호)의 실제 청구항 문언과 피고 제품 기술 구성을 바탕으로 한정 원장 프레임워크를 적용한 실무 시뮬레이션입니다. 청구항을 단순한 부품 목록이 아닌 '원자적 한정 명제' 단위로 재구성하여 문언침해, 균등침해, 출원경과 금반언의 영향력을 입체적으로 추적합니다.

ID 청구 문언 원자적 한정 명제 유형 명세서 및 출원경과 피고 대응 요소 문언침해 균등침해
L1 "storing... in memory" 수신된 도플러 신호의 주파수 성분 데이터를 메모리 장치에 기록하는 단계 방법/물리 단계 기술적 기본 연산 모듈. 심사 과정에서 논쟁 없음. 도플러 신호 스펙트럼 데이터를 메모리에 저장함. 충족 — 물리적 기능 일치. 문언 충족으로 비교 불요.
L2 "preselected magnitude or frequency criteria" 크기(최강 신호) 기준 또는 주파수(최고속) 기준 중 어느 하나만을 배타적으로 적용하여 검색하는 조건 관계. 대안/조건 관계 명세서에 두 모드 동시 수행 실시예 없음. 비자명성 거절 극복을 위해 '선택적' 단일 검색 제한을 보정 도입. 최강 신호와 최고속 신호 검색을 항상 동시에(and) 자동으로 수행. 불충족 — "or"는 배타적 선택(XOR)으로 해석되므로, 양쪽을 동시 수행하는 피고의 'and' 방식은 문언 범위를 벗어남. comprising도 이 배타적 제한을 무력화하지 못함. 부정(Estoppel) — 지방법원은 "or" 요소 부재를 이유로 전요소원칙 위반을 주장했으나 이는 오류. CAFC는 "or"가 독립된 물리 부품이 아님을 확인. 그러나 심사 중 선택적 구조를 강조하여 특허성을 취득했으므로 출원경과 금반언으로 균등론 적용 불가.
L3 "selecting either... or... search" 운영자의 입력 제어에 의해 두 가지 대안적 검색 모드 중 하나가 결정되어 작동하는 제어 메커니즘. 기능/상호작용 출원 과정에서 운영자가 주도하는 'Multi-mode'의 대안적 선택 작동임을 강조하여 특허성 취득. 이중 계산이 완료된 상태에서 표시할 모드만 사용자가 선택. 불충족 — 검색 프로세스 자체를 사전에 배타적으로 선택하는 구조가 아님. 부정 — 사용자의 사전 선택형 단일 연산과 장치의 상시 자동 이중 연산은 작동 방법(Way)에서 본질적 차이가 존재.

이 시뮬레이션이 주는 두 가지 실무적 교훈

첫째, 접속사의 '가짜 요소화' 방지. 지방법원은 청구항 차트를 기계적으로 작성하여 'or' 자체를 하나의 독립된 물리적 부품(Element)으로 설정하는 우를 범했습니다. 그 결과 피고 제품에 'or'가 없으니 전요소원칙상 비침해라는 억지 결론을 내렸습니다. CAFC는 이를 정정하며 "or"는 독립된 장치 구성요소가 아니라 대안적 관계를 규정하는 문법적 표현이라고 명쾌하게 선을 그었습니다. 올바른 한정 원장은 L2와 같이 'or'가 형성하는 기술적 작동 관계 전체를 하나의 완결된 범위제한 명제로 묶어 분석해야 합니다.

둘째, 침해 주장과 무효 항변의 대칭성 통제. 만약 특허권자가 침해를 입증하기 위해 L2의 범위를 '동시 검색(and)'까지 균등론으로 확장하려 시도했다면, 그 즉시 동시 검색을 보여주는 모든 선행기술이 §102 및 §103 무효 사유로 포섭되는 부메랑을 맞게 됩니다. 더욱이 심사 과정에서 선행기술을 피하려고 "or"로 청구범위를 좁혔으므로, 이를 다시 균등론으로 되찾으려 하는 것은 출원경과 금반언에 의해 엄격히 차단됩니다.


7. 결론 및 전문가 제언

특허 소송에서 승리하는 실무자는 청구항을 '단어의 나열'이 아닌 '원자적 논리 명제의 결합'으로 바라봅니다.

  1. 단어에서 한정으로: 개별 단어의 사전적 의미에 매몰되지 말고, 그것이 전체 범위 획정에서 담당하는 '범위제한적 명제'의 가치를 파악하십시오.
  2. Kustom Signals의 교훈: 접속사나 관사 같은 문법적 표현은 범위를 정의하는 가이드는 될 수 있으나, 그 자체가 전요소원칙의 대상이 되는 물리적 요소는 아닙니다.
  3. 검증의 철학: 전요소원칙을 단순한 부품 체크리스트가 아닌, 발명의 기술 사상을 원자 단위에서 검증하는 고도의 논리적 프로세스로 내재화하십시오.
  4. 한정 원장의 중심 역할: 한정 원장은 소송 대리인과 기업 법무팀이 특허 침해 여부와 무효화 가능성을 하나의 축 위에서 완벽하게 대칭적으로 관리할 수 있도록 돕는 실무적 중심 축입니다.

관련 해설 영상: "or"는 부품이 아니다 — 미국 특허 청구항의 '요소(Element)'와 '한정(Limitation)'의 치명적 차이 및 Kustom Signals 판례 분석

© 2026 All rights reserved. · 본 글은 법률 자문이 아니며, 구체적인 사안은 자격을 갖춘 특허 전문가와 상담하시기 바랍니다.

미국 특허소송은 어디에서 승패가 갈리는가 — 한국 기업이 알아야 할 7단계와 단계별 승소 전략

미국 특허소송은 단순히 “우리 제품이 상대방 특허와 다르다”는 사실을 법정에서 설명하는 싸움이 아닙니다. 청구항 해석, Discovery, Summary Judgment, 균등론, 배심재판, JMOL과 항소심까지 각...