Copyright and software licences
| English | Chinese | Pinyin |
|---|---|---|
| copyright | 版权 | bǎn quán |
| licence | 许可证 | xǔ kě zhèng |
| patent | 专利 | zhuān lì |
| commercial | 商业的 | shāng yè de |
| open-source | 开源 | kāi yuán |
| freeware | 免费软件 | miǎn fèi ruǎn jiàn |
| shareware | 共享软件 | gòng xiǎng ruǎn jiàn |
| permissive | 宽松许可 | kuān sōng xǔ kě |
| copyleft | 著佐权 | zhù zuǒ quán |
Who owns software?
- When someone writes software, the law says how others may use it.
- Copyright 版权 protects the work; a licence 许可证 grants permission to use it.
- Different licences suit different goals — revenue, reach, or community.
Risk and responsibility lab
Sort examples by the rule, risk or protection involved.
Copyright
- Copyright is the creator's legal right to control how a work is copied, distributed, modified and performed.
- It applies automatically (no registration) to source code, software, documents, images, audio and video.
- It encourages software: developers can earn from their work and re-use happens on their terms.
- It lasts a long time (often 70 years after the creator's death). General ideas and algorithms aren't covered by copyright — they may be covered by a patent 专利.

Copyright protects the expression (the code); a patent protects a novel idea or invention

Software development affects the public's wellbeing in several ways
Copyright applies automatically to an original work (including code) and controls how it is copied and modified — but a general idea or algorithm needs a patent instead.
Copyright protects the specific expression; ideas/inventions are protected (if at all) by patents.
A general idea or algorithm is NOT covered by copyright, but may be protected by a:
Copyright protects the specific expression (the code/text); ideas and inventions may be protected by a patent.
Software licence types
| Type | Cost | Source given? | Redistribute? | Modify? |
|---|---|---|---|---|
| Commercial 商业的 (proprietary) | Paid | No | No | No |
| Open-source 开源 | Free | Yes | Yes | Often, with conditions |
| Freeware 免费软件 | Free | No | Yes | No |
| Shareware 共享软件 | Free trial, then paid | No | Sometimes | No |
- Open-source splits into permissive 宽松许可 (MIT, BSD — almost any use) and copyleft 著佐权 (GPL — modified versions must use the same licence, "share-alike").

Software licences branch into commercial and open-source, and open-source into permissive and copyleft
Open-source software means:
Open-source publishes the source so the community can read, modify and redistribute it (under the licence terms).
A copyleft licence such as the GPL requires that:
Copyleft ("share-alike") forces derivative works to keep the same open licence; permissive licences (MIT/BSD) do not.
How does shareware differ from freeware?
Freeware is free with no source; shareware is free only for a trial, then requires payment.
Match each licence type to its key feature.
Commercial = paid/closed; open-source = source available and modifiable; freeware = free but closed.
Choosing a licence
- Link the choice to the developer's goal:
- commercial → earn revenue per user and keep control of the code;
- open-source → maximum reach and community improvement;
- freeware/shareware → free distribution, perhaps to upsell a paid version.
You've got it
- copyright is automatic and controls copying/distributing/modifying; ideas/algorithms → patent
- commercial (paid, closed) · open-source (source public, modify/share)
- copyleft (GPL) = modified versions must stay under the same licence; permissive (MIT) = almost anything
- freeware (free, no source) vs shareware (free trial, then pay)