48

So can an algorithm be patented?

I saw this statement which made me think:

Everybody would abstain from patenting the improvements of contour dot algorithm for at least several years, say up till 2021. So that the developers of the Outliner project feel free to implement their ideas.

taken from this codeplex project.

Josh K
  • 23,029
  • 10
  • 67
  • 100

6 Answers6

31

Yes, legally they can be patented (in many, but not all, countries).

Patents have been around for a very long time, and the idea is exactly as you describe: to protect your invention so that you have time to build it, market it and profit from it. Without patents, you might invent something and then someone with more resources and money could come along, built your invention and by the time you were ready to sell it, they'd have already cornered the market.

Many people believe that the same protections are not required for software, because - generally speaking - it does not take a lot of effort to "build it". When you're talking about real-world objects, you need to have a factory to manufacture it, you need machines, you need employees, you need a distribution network and so on. If you can't get those things, then you could license your patented idea to someone who did have those things, and they could do all of that extra stuff for you.

But with software, anybody with a compiler and an internet connection can build and distribute the software, so there is less of a need to "protect" the invention to give you time to set up your distribution network and whatnot.

Then there's also the problem that the people in the patent office are generally simply not qualified to determine whether a particular software invention is patentable or not, leaving it up to the courts to decide whether a patent was valid when the owner tries to assert their rights to it. That means if you're a small company and you "infringe" on an invalid patent, you likely don't have the resources to fight the patent anyway (even if it's invalid).

But let's not go into that particular debate :-) I could go on for days...

Dean Harding
  • 19,911
12

IANAL.

From a legal standpoint in the United States, yes, software can be patented as such. The USPTO has accepted and approved many thousands of such patent applications over the last 25 or so years.

In the European Union, no, software is not legally patentable as such.

Other countries have differing rules regarding the patentability of algorithms and processes. Wikipedia explains.

That said, in the US Supreme Court case In re Bilski, the Court rejected the "machine-or-transformation test" as the sole test of patentability. (One of the Justices dissented from the opinion, stating that the Court did not go far enough in rejecting these kinds of patents wholesale.) The result is that many business method patents are now invalid, and the USPTO has begun denying software algorithms and other method patents - not all of them, but a few.

I'd suggest going to Groklaw's Bilski page and reading more about it.

It's worth adding that the more recent Alice Corp. v. CLS Bank International case, the Supreme Court recently overturned the CAFC's decision to affirm software patents. The patents cover what amounts to escrow, when done over the Internet. The Supreme Court held that merely adding "over the Internet" or "on a computer" is not enough to make a patent covering an abstract idea valid. This substantially narrows the field for software patents, but does not make them invalid.

greyfade
  • 11,133
  • 2
  • 42
  • 43
11

In the US, a pure algorithm is explicitly exempted from being patentable as are mathematical facts and formulas and "ideas".

In reality, you can patent an algorithm (in the US). In fact, it doesn't even have to be in code and anyway when a patent is issued, it is NOT issued against source code, it's issued for "a series of steps performed" which of course is nothing more or less than an algorithm. Certainly working source code is not required, so the embodiment of the algorithm in code is not what's being patented. What's being patented is just the ethereal "idea" of something doing X then Y then Z in that order.

If this sounds like the system is talking out of both sides of it's mouth, then you've grasped what's going on... "No, of course you can't patent algorithms." "Sure, of course you can patent that algorithm."

Just to illustrate the fact that no code, working model, actual thing is associated with these patents consider that there are entirely successful businesses that operate as follows:

A entrepreneur sits around in a room with a bunch of "creative types", possibly some programmers, and some lawyers. They "brainstorm" about how some software product could be made to perform some useful function. They create nothing, no code, no prototype, nothing. At each step of the "product improvement process" a lawyer listens in, and when he/she recognizes something patentable, they note it. At the end of the day, the lawyer starts the creation of (or hands off the creation of) a new patent.

This is not made up; there are companies that do exactly the above. Each of these patents is a algorithm, since it does nothing except specify a series of steps to be taken at various points in time.

9

Yes.

See the various compression algorithms, video encoding algorithms, etc.

Find some of them on Wikipedia

Here, have a sample patent, Code-word list algorithm

Dan McGrath
  • 11,181
  • 6
  • 57
  • 82
2

I think so, however the whole concept of Patents as a mean to "protect intellectual property" is in my view deeply flawed.

A patent is nothing more than man made enforced rule (one which is not even consistent across different countries).

Piracy is illegal, but that doesn't make it stop.

Algorithms can and do get "reversed" engineered, so patents aside there is little real physical protection1.

1 Legal is another matter

Trade Secret

Darknight
  • 12,159
1

In real world yes, but in a personal opinion, that's just like putting a patent on one of your thoughts and prevent anyone else from thinking on the same thing, it is really stupid, but it is what we have...

Coyote21
  • 437