Start with the recap, study the fully worked examples, then use the practice problems to
check your understanding of Intellectual Property.
This page combines explanation, solved examples, and follow-up practice so you can move
from recognition to confident problem-solving in CS Thinking.
Concept Recap
Legal rights that protect creations of the mind โ inventions, literary and artistic works, designs, symbols, names, and images used in commerce. In computing, intellectual property covers software licenses, open source agreements, Creative Commons content, patents on algorithms, and fair use provisions.
Just as you own physical property, creators own their ideas and creative works. Copying without permission is like taking someone's belongings.
Read the first worked example with the solution open so the structure is clear.
Try the practice problems before revealing each solution.
Use the related concepts and background knowledge badges if you feel stuck.
What to Focus On
Core idea:In computing, IP covers software licenses, open source agreements, Creative Commons, patents, and fair use.
Common stuck point:Open source doesn't mean 'no rules.' Open source licenses specify exactly how you can use and share the code.
Sense of Study hint:When using someone else's work, always check the license first. Copyright applies automatically to creative works. Open source licenses (MIT, GPL, Apache) each have different rules about attribution and redistribution. When in doubt, contact the creator for permission.
Worked Examples
Example 1
easy
What is intellectual property (IP)? Name three types and give a computing-related example of each.
Answer
IP is legally protected creations. Copyright (source code), Patent (algorithms/inventions), Trademark (logos/brand names).
First step
1
Step 1: Intellectual property is a creation of the mind that is legally protected. It gives creators rights over their work.
Full solution
2
Step 2: (1) Copyright โ protects creative works. Example: the source code of a program is automatically copyrighted by its author. (2) Patent โ protects inventions. Example: a new algorithm for data compression.
3
Step 3: (3) Trademark โ protects brand identifiers. Example: the Apple logo or the Windows name. These legal protections encourage innovation by ensuring creators benefit from their work.
Understanding intellectual property is essential in computing. Using copyrighted code, images, or music without permission is illegal, even in student projects, and has real legal consequences.
Example 2
medium
Explain the difference between open-source and proprietary software in terms of intellectual property rights.
Example 3
medium
Map each scenario to copyright, patent, or trademark: (a) a new sorting algorithm, (b) the source code of a game, (c) a company's three-letter logo.
Example 4
hard
Evaluate: a small developer wants to build a tool using GPL-licensed library code in their proprietary closed-source app. Identify the conflict and one lawful path.
Practice Problems
Try these problems on your own first, then open the solution to compare your method.
Example 1
medium
A student finds code on the internet that solves their programming homework. Is it legal to copy and submit it? Discuss both the legal and ethical issues.
Example 2
hard
Discuss whether software patents help or hinder innovation. Give arguments for and against, with examples.
Example 3
easy
A novelist writes a book. What type of intellectual property automatically protects the text from being copied?
Example 4
easy
An engineer invents a new, non-obvious machine. Which IP type protects the invention itself?
Example 5
easy
A company's logo and brand name are protected by which IP type?
Example 6
easy
Open-source software is free to use, but does that mean it has no rules?
Example 7
easy
You find an image online with no copyright notice. Are you free to use it however you like?
Example 8
easy
A photo is released under a Creative Commons 'CC BY' license. What is the main thing you must do to use it?
Example 9
easy
True or false: fair use lets you copy any copyrighted work as long as you do not sell it.
Example 10
easy
Classify: a software developer writes original source code. What IP protects the code as written?
Example 11
medium
A student copies a paragraph from a website into their report without credit and submits it. Name the IP/ethics violation and the simple fix.
Example 12
medium
An open-source library uses the GPL, which requires derived works to also be open-sourced. A company wants to use it in closed software. What is the conflict called and one lawful option?
Example 13
medium
Classify each: (a) the Coca-Cola logo, (b) a patented one-click checkout method, (c) a published song's lyrics.
Example 14
medium
A developer downloads a meme image and puts it on merchandise they sell. Why is this likely infringement despite the image being 'everywhere online'?
Example 15
medium
Why might patenting an algorithm be controversial in computing, even when legal?
Example 16
medium
A team uses an MIT-licensed component in their product. The MIT license is permissive. What minimal obligation must they still meet?
Example 17
medium
Distinguish: copyright vs. patent for a new video game. Which protects the artwork/code, and which could protect a novel gameplay mechanism?
Example 18
medium
A blogger quotes two sentences from a news article to critique it, with credit. Which IP doctrine most likely permits this?
Example 19
medium
A musician releases a track under a Creative Commons 'CC BY-NC' license. A company wants to use it in a paid advertisement. Is that allowed, and why?
Example 20
challenge
An AI image generator was trained on millions of copyrighted artworks without licenses, and now produces images in a living artist's style. Identify the central IP question and why it is unsettled.
Example 21
challenge
A company finds that combining a GPL library with their proprietary code may force them to release all their source. Explain the mechanism (copyleft) and a clean architectural workaround that respects the license.
Example 22
challenge
Why does the patent system require public disclosure of the invention, and what is the societal trade-off being made?
Example 23
easy
A student takes a screenshot from a movie and posts it without permission. Which IP right does this primarily concern?
Example 24
easy
Which Creative Commons element forbids commercial use?
Example 25
easy
Name one thing a software license typically tells you.
Example 26
easy
A new song is released. About how many years does copyright typically protect it (modern US standard, life of author plus how many years)?
Example 27
easy
What is public domain?
Example 28
medium
A startup uses an Apache 2.0 licensed library in a commercial product. Is this allowed and what is one obligation?
Example 29
medium
A teacher photocopies one chapter from a textbook for one class lesson. Which doctrine might permit this?
Example 30
medium
Why might a company prefer a permissive license (like MIT) over GPL for their dependencies?
Example 31
medium
A musician samples 5 seconds of another song without permission and releases it for sale. Which IP issue is most relevant?
Example 32
medium
What does it mean to dedicate a work to the public domain via CC0?
Example 33
medium
A patented algorithm has 17 years left on its patent. A competitor independently invents the same algorithm. Are they free to use it?
Example 34
medium
What does DMCA stand for, and what kind of process does it provide for online copyright disputes?
Example 35
hard
A YouTuber uses a 30-second clip of a movie to critique it. Which fair-use factors most strongly support their use?
Example 36
hard
A developer publishes code with no license attached. Can others legally use it freely?
Example 37
hard
What is a 'patent troll' and why is it considered a problem?
Example 38
hard
A book is in the public domain, but a publisher releases a new edition with an original introduction. Is the introduction copyrighted?
Example 39
hard
Why do some argue that AI-generated images should not get copyright?
Example 40
hard
How does a non-disclosure agreement (NDA) interact with trade-secret IP?
Example 41
challenge
Discuss why software patent reform is a recurring policy topic, citing one harm and one benefit of software patents.
Example 42
challenge
Why does the open-source movement claim that strong copyleft (e.g., GPL) ultimately maximizes freedom for users, even though it restricts what derivative-work authors may do?