Is a design pattern considered a patent?

link|improve this question
2  
I think he means is a design pattern patentable? – Todd Moses Feb 25 '10 at 15:59
3  
This is a legal question. And as with all legal questions, the answer is 'it depends on who you hire and how much you pay them' – DA. Feb 25 '10 at 16:02
feedback

6 Answers

No. A patent is a legal limited monopoly on a specific invention. A design pattern is a documented general approach to solving a common type of problem. They're two completely different things.

link|improve this answer
I think the question he is getting at is... can something be both? – Neil N Feb 25 '10 at 15:53
In some countries it may be possible to patent a design pattern so that nobody can implement it without licensing it from you, but the patent is still separate from the pattern itself. Just writing a pattern document doesn't provide any legal protection. – Wyzard Feb 25 '10 at 15:58
But a pattern could be defined as an invention... or a business process which is patentable. Hell, Microsoft patented the IsNot operator in Visual Basic! – Nick Feb 25 '10 at 16:04
1  
Imagine if, in the early days of computer science, someone had patented the linked list. – Wyzard Feb 25 '10 at 16:07
feedback

You potentially could try to patent a new design pattern, but I doubt it would be very successful depending on the pattern in question. There is so much documentation and so many books regarding patterns currently in existence, that you would definitely run afoul of the "novelty" rule and the "prior art" rules to patent exclusion.

Hell, if Microsoft can try to patent the Visual Basic IsNot operator, then someone could try to patent a design pattern.

link|improve this answer
feedback

No.

Design Pattern: a general reusable solution to a commonly occurring problem in software design

Patent: an official right to be the only person or company allowed to make or sell a new product for a certain period of time

link|improve this answer
-1: That is terrible oversimplification of patent law. Take a look at 35 U.S.C. 101: "Whoever invents or discovers any new and useful process, machine, manufacture, or composition of matter, or any new and useful improvement thereof, may obtain a patent therefor, subject to the conditions and requirements of this title." – advs89 Feb 27 at 3:37
I do agree, though, that a design pattern is not likely to be patentable unless it's either involved in a "physical transformation" or is essential to a business method. (but full-disclosure, IANAL) – advs89 Feb 27 at 3:43
feedback

The question makes no sense. A patent is something you have to apply and pay for, and which is then granted by a patent office.

So a valid question is "could a design pattern be patented?" And the answer is: probably not. The patent offices in different countries have different standards on what can and cannot be patented, but the general gist is that you can only patent practical applications, not abstract ideas. So a design pattern would most likely not be patentable.

link|improve this answer
feedback

I think the answer is a definite NO. Since design patterns are, by definition, not specifically invented, but rather observed and recognized in already existing real world applications, "prior art" (an obstactle to patentability) will always apply.

link|improve this answer
feedback

I don't believe a design pattern could be patented, due to it necessarily being in common use in development (a pattern).

An algorithm on the other hand, is definitely patentable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.