This document discusses several design patterns: Factory, Flyweight, Singleton, Observer, Proxy, Decorator. It provides definitions and examples of when to use each pattern. The Factory pattern creates objects without specifying the exact class. Flyweight reduces memory usage by sharing instances. Singleton ensures only one instance exists. Observer notifies dependent objects of state changes. Proxy controls access to another object. Decorator adds new behaviors to an object dynamically.