Lambda Symbol λ Copy & Paste: Greek Letter & Programming
Lambda (λ) is the 11th letter of the Greek alphabet and one of the most symbolically rich characters in mathematics, physics, computer science, and popular culture. From AWS Lambda to lambda calculus, this letter is everywhere in tech. Every lambda variant is below, ready to copy.
All Lambda Symbols
| Symbol | Name | Unicode | Copy |
|---|---|---|---|
| λ | Small Lambda | U+03BB | λ |
| Λ | Capital Lambda | U+039B | Λ |
| ϑ | Theta Symbol (related) | U+03D1 | ϑ |
Lambda in Mathematics
Lambda has several important mathematical uses:
- Lambda calculus: A formal system in mathematical logic for expressing computation based on function abstraction and application. Developed by Alonzo Church in the 1930s.
- Eigenvalues: In linear algebra, lambda (λ) represents eigenvalues of a matrix
- Lagrange multiplier: Used in optimization problems to find maximum and minimum values
- Wavelength: In physics, lambda represents the wavelength of a wave
- Linear algebra: Lambda appears in characteristic polynomial equations
Lambda Calculus Explained Simply
Lambda calculus is a system that uses lambda (λ) to define anonymous functions. Instead of writing "f(x) = x + 1", you write "λx.x + 1". This seemingly simple notation forms the theoretical foundation of all functional programming languages and influenced the design of Lisp, Haskell, ML, and many others.
Lambda in Physics
- Wavelength: The distance between consecutive wave peaks. Visible light ranges from λ = 380nm (violet) to λ = 700nm (red)
- Radioactive decay constant: The probability per unit time that a nucleus will decay
- Thermal conductivity: Some physics texts use lambda for thermal conductivity
- Dark energy: The cosmological constant in Einstein's equations is often represented as lambda
Lambda in Programming
AWS Lambda
Amazon's serverless computing platform AWS Lambda is named after lambda calculus. It lets you run code without provisioning or managing servers. You write a function, upload it, and AWS runs it automatically when triggered. The name reflects the concept of anonymous functions that execute and disappear.
Lambda Functions in Code
Many programming languages support lambda functions (also called anonymous functions or closures):
- Python: lambda x: x + 1 creates an anonymous function
- JavaScript: Arrow functions (x) => x + 1 are lambda expressions
- Java: Lambda expressions were added in Java 8: (x) -> x + 1
- C#: Lambda operator => defines anonymous functions
- Ruby: lambda blocks and proc objects use the concept
- Haskell: Uses backslash (\) as an approximation of lambda: \x -> x + 1
Lambda in Popular Culture
- Half-Life: The lambda symbol is the iconic logo of the Half-Life video game series, appearing on Gordon Freeman's hazard suit and throughout the games
- Google+: Google+ used a stylized lambda in some branding elements
- LGBTQ+ history: The lambda was adopted as a symbol of gay rights by the Gay Activists Alliance in 1970
- Spartans: Ancient Spartans painted lambda on their shields, representing Laconia (their home region)
How to Type Lambda on Keyboard
Windows
- Alt code: Hold Alt, type 955 (numeric keypad) for λ
- Character Map: Search "lambda," select and copy
- Word: Insert > Symbol > Greek and Coptic > Lambda
Mac
- Character Viewer: Control+Command+Space, search "lambda"
- Greek keyboard: Press "l" for λ, Shift+L for Λ
Mobile
Copy from this page or add a Greek keyboard. On the Greek keyboard, λ maps to the "l" key.
LaTeX Commands
| Symbol | Command | Output |
|---|---|---|
| Small Lambda | \lambda | λ |
| Capital Lambda | \Lambda | Λ |
HTML Entities
| Render | Named Entity | Decimal Code |
|---|---|---|
| λ | λ | λ |
| Λ | Λ | Λ |
Quick Copy Section
All lambda symbols in one place:
λ Λ
Highlight, copy, paste. From lambda calculus to AWS, this letter powers modern computing.