# Unseel > Free interactive 3D and 2D animations explaining concepts across computer science, mathematics, physics, biology, chemistry, astronomy, philosophy, economics, engineering, psychology, medicine, and linguistics. Each concept has a written article, a step-by-step interactive visualization, and a 60-second narrated video. ## Site - [Home](https://unseel.com/): Browse all subjects and concepts - [Swipe view](https://unseel.com/swipe.html): TikTok-style vertical concept feed - [Shorts feed](https://unseel.com/shorts.html): Vertical-swipe video feed ## Computer Science Algorithms, data structures, AI, systems, and computing fundamentals. 450 concepts. - [Computer Science index](https://unseel.com/cs.html): All computer science concepts - [2-SAT](https://unseel.com/cs/two-sat.html): 2-SAT decides a boolean formula made of two-literal clauses in O(n + m) time by building an implication graph, finding its strongly conne... - [2D Fenwick Tree (Binary Indexed Tree)](https://unseel.com/cs/fenwick-tree-2d.html): A 2D Fenwick tree nests two BIT loops to support point updates and submatrix prefix sums in O(log N · log M). It is the canonical structu... - [A* Pathfinding · Shortest Route](https://unseel.com/cs/a-star.html): A* pathfinding explained in 3D — watch the algorithm explore cells using f = g + h to find the shortest path through obstacles. Interacti... - [ACID Properties](https://unseel.com/cs/acid-properties.html): ACID properties — atomicity, consistency, isolation, durability — are the four guarantees a database transaction makes. Together they let... - [Actor Model](https://unseel.com/cs/actor-model.html): The actor model treats concurrency as isolated entities that own private state and process one message at a time from a mailbox. Erlang a... - [Actor-Critic Methods](https://unseel.com/cs/actor-critic-methods.html): Actor-critic methods pair a policy network (the actor) that picks actions with a value network (the critic) that scores them, using the c... - [Adam Optimizer](https://unseel.com/cs/adam-optimizer.html): Adam is a gradient-descent optimizer that gives every parameter its own adaptive learning rate, derived from running estimates of the gra... - [Address Space Layout Randomization (ASLR)](https://unseel.com/cs/address-space-layout-randomization.html): Address Space Layout Randomization (ASLR) is an OS defense that randomizes the base addresses of the stack, heap, libraries, and executab... - [AES Block Cipher](https://unseel.com/cs/aes-block-cipher.html): AES is a symmetric block cipher that encrypts 128-bit blocks through 10, 12, or 14 rounds of byte substitution, row shifts, column mixing... - [Aho-Corasick Algorithm](https://unseel.com/cs/aho-corasick.html): Aho-Corasick is a string-matching algorithm that locates all occurrences of any pattern from a finite set within a text in a single pass,... - [Aho-Corasick Multi-Pattern Matching](https://unseel.com/cs/ahocorasick-multi-pattern.html): Aho-Corasick scans one text for every pattern in a dictionary in a single pass — O(n + m + z). Build a trie of patterns, add failure link... - [Algebraic Data Types](https://unseel.com/cs/algebraic-data-types.html): Algebraic data types build new types by combining "and" (products: structs and tuples) and "or" (sums: tagged unions), where the total nu... - [Algorithm X — Exact Cover](https://unseel.com/cs/exact-cover-x.html): Knuth's Algorithm X solves exact-cover problems with dancing links: pick the smallest constraint column, try each candidate row, cover, r... - [Alias Method Sampling](https://unseel.com/cs/alias-method-sampling.html): Walker's alias method samples from a discrete distribution in O(1) time after O(n) preprocessing. Two arrays, one uniform draw, one biase... - [Amortized Analysis](https://unseel.com/cs/amortized-analysis.html): Amortized analysis averages the cost of a rare expensive operation over the many cheap ones around it. It's why a dynamic array's push is... - [Anti-Entropy](https://unseel.com/cs/anti-entropy.html): Anti-entropy is a background process that periodically compares replicas using Merkle trees and repairs divergence — providing an eventua... - [Anycast](https://unseel.com/cs/anycast.html): Anycast is a network-addressing technique where multiple servers in different geographic locations advertise the same IP prefix via BGP. ... - [API Rate Limiting](https://unseel.com/cs/api-rate-limiting.html): API rate limiting is the practice of capping the number of requests a client can make in a time window to protect backend resources, prev... - [ARP (Address Resolution Protocol)](https://unseel.com/cs/arp.html): ARP (Address Resolution Protocol) maps a known IPv4 address to the unknown 48-bit MAC address on a local network by broadcasting a who-ha... - [Async / Await](https://unseel.com/cs/async-await.html): async/await is syntactic sugar over promise chaining — a function suspends at each await and resumes when the awaited future completes. C... - [Atomic Operations](https://unseel.com/cs/atomic-operations.html): An atomic operation is a CPU instruction (or sequence) that completes as an indivisible unit — no other thread can observe an intermediat... - [Authenticated Encryption (AEAD)](https://unseel.com/cs/authenticated-encryption.html): Authenticated encryption (AEAD) combines a cipher with a message authentication tag so any tampering with the ciphertext is detected befo... - [Autoencoder](https://unseel.com/cs/autoencoder.html): An autoencoder is a neural network trained to copy its input to its output through a narrow bottleneck, forcing it to learn a compressed ... - [AVL Tree](https://unseel.com/cs/avl-tree.html): An AVL tree is a self-balancing binary search tree that keeps the heights of any node's two subtrees within ±1, guaranteeing O(log n) loo... - [B-Tree](https://unseel.com/cs/b-tree.html): Each node holds many sorted keys — dozens to hundreds — keeping tree depth shallow enough that million-record lookups fit in 3-4 disk rea... - [B+ Tree](https://unseel.com/cs/b-plus-tree.html): A B+ tree is a balanced multi-way tree that stores all data in linked leaf nodes and uses internal nodes only as a search index. It's the... - [Backpressure](https://unseel.com/cs/backpressure.html): Backpressure is the flow-control signal slow consumers send upstream to slow producers down. Bounded queue + block/drop/spill modes. Used... - [Backpropagation](https://unseel.com/cs/backpropagation.html): Backpropagation is the algorithm at the heart of training neural networks. It computes the gradient of a scalar loss with respect to ever... - [Backtracking](https://unseel.com/cs/backtracking.html): Backtracking is a depth-first search of the solution space that abandons partial candidates the moment they cannot extend to a valid answ... - [Barrier Synchronization](https://unseel.com/cs/barrier-synchronization.html): A barrier blocks N threads until all have arrived, then releases them simultaneously. Used in BSP parallel loops, GPU warp synchronizatio... - [Base64 Encoding](https://unseel.com/cs/base64-encoding.html): Base64 encodes 3 raw bytes (24 bits) as 4 ASCII characters (6 bits each), expanding data by ~33%. Used in MIME email, data URIs, JWT, bas... - [Batch Normalization](https://unseel.com/cs/batch-normalization.html): Batch normalization standardizes each layer's activations using the mean and variance of the current mini-batch, then rescales them with ... - [Beam Search](https://unseel.com/cs/beam-search.html): Beam search is a heuristic decoding algorithm that keeps the k highest-scoring partial sequences at each step instead of committing greed... - [Bellman-Ford](https://unseel.com/cs/bellman-ford.html): V-1 rounds of edge relaxation find shortest paths from a source — even with negative weights. Slower than Dijkstra, but strictly more gen... - [Bezier Curves](https://unseel.com/cs/bezier-curves.html): A Bezier curve is a smooth parametric curve traced by repeatedly interpolating between control points. The de Casteljau algorithm evaluat... - [Bidirectional Dijkstra](https://unseel.com/cs/dijkstra-bidirectional.html): Bidirectional Dijkstra runs the search from source AND target at once. The frontiers meet in the middle — average √N nodes vs N — giving ... - [Big O Notation](https://unseel.com/cs/big-o-notation.html): How Big O notation measures algorithm efficiency — see O(1), O(log n), O(n), O(n²), and O(2ⁿ) growth rates compared in 3D. - [Binary Search](https://unseel.com/cs/binary-search.html): Step-by-step visualization of binary search on a sorted array — halving the search space with each comparison. - [Binary Search Tree](https://unseel.com/cs/binary-tree.html): 3D tree of floating nodes with glowing edges. Keys travel down to find their position with in-order traversal. - [Bit Manipulation Tricks](https://unseel.com/cs/bit-manipulation-tricks.html): Bit hacks compress whole algorithms into a few CPU cycles. Clear lowest bit with x & (x-1), isolate it with x & -x, count bits with Brian... - [Block Cipher Modes (CBC, CTR, GCM)](https://unseel.com/cs/block-cipher-modes.html): Block cipher modes turn a fixed-size cipher like AES into a tool for encrypting arbitrary-length data: ECB encrypts each block independen... - [Blockchain](https://unseel.com/cs/blockchain.html): Chain of blocks where each block contains data and a cryptographic hash linking it to the previous block. Immutable, decentralized ledger. - [Bloom Filter](https://unseel.com/cs/bloom-filter.html): A compact bit array with k hash functions. Tells you if an item is possibly in the set (with tunable false-positive rate) or definitely a... - [Border Gateway Protocol (BGP)](https://unseel.com/cs/bgp.html): BGP is the path-vector routing protocol that exchanges routing information between autonomous systems (ASes) — the ~75,000 networks (ISPs... - [Borůvka's MST](https://unseel.com/cs/boruvka-mst.html): Borůvka's algorithm finds a minimum spanning tree by having every component pick its cheapest outgoing edge simultaneously. Components me... - [Bounding Volume Hierarchy (BVH)](https://unseel.com/cs/bounding-volume-hierarchy.html): A bounding volume hierarchy (BVH) is a tree of nested bounding boxes built over a scene's primitives, turning O(n) ray and collision quer... - [Boyer-Moore String Search](https://unseel.com/cs/boyer-moore.html): Boyer-Moore is a string-search algorithm that compares the pattern to the text from right to left and uses two heuristics — bad-character... - [Branch Prediction](https://unseel.com/cs/branch-prediction.html): Branch prediction is a CPU technique that guesses whether a conditional branch (if/while/for) will be taken before knowing the actual out... - [Breadth-First Search](https://unseel.com/cs/bfs.html): 3D graph explored level by level. The starting node glows, then neighbors light up in a wave using a queue. - [Bresenham's Line Algorithm](https://unseel.com/cs/bresenham-line.html): Bresenham's line algorithm draws a straight line on a pixel grid using only integer addition, subtraction, and comparison — tracking a ru... - [Bubble Sort](https://unseel.com/cs/bubble-sort.html): Walk through the array swapping adjacent pairs that are out of order. Each pass bubbles the next largest value to its place. O(n²) — slow... - [Buddy Allocator](https://unseel.com/cs/buddy-allocator.html): A buddy allocator manages memory as power-of-two blocks: split a larger block in half to allocate, merge a free block with its sibling bu... - [Bulk Insert Batching](https://unseel.com/cs/bulk-insert-batching.html): Bulk insert batching collapses many single-row INSERTs into one round-trip — eliminating network latency, transaction overhead, and WAL f... - [Bulkhead Pattern](https://unseel.com/cs/bulkhead-pattern.html): The bulkhead pattern isolates each dependency in its own resource pool — thread pool, connection pool, or process — so one downstream's f... - [Burrows-Wheeler Transform](https://unseel.com/cs/burrows-wheeler-transform.html): The Burrows-Wheeler Transform sorts all rotations of a string and outputs the last column. It clusters similar characters, making the res... - [Byte Pair Encoding (BPE)](https://unseel.com/cs/byte-pair-encoding.html): Byte Pair Encoding (BPE) builds a subword vocabulary by repeatedly merging the most frequent adjacent symbol pair, turning rare words int... - [Bytecode Virtual Machine](https://unseel.com/cs/bytecode-vm.html): A bytecode virtual machine executes a compact stream of compiled instructions on a software stack machine — the dispatch loop that runs P... - [Cache Associativity](https://unseel.com/cs/cache-associativity.html): Cache associativity decides where in the cache a memory block is allowed to live: direct-mapped (exactly one slot), fully associative (an... - [Cache Coherence](https://unseel.com/cs/cache-coherence.html): Every core on a modern CPU has its own L1 cache. Without coordination, two cores could hold two different versions of the same memory add... - [CAP Theorem](https://unseel.com/cs/cap-theorem.html): The CAP theorem says a distributed data store cannot simultaneously offer linearizable consistency, total availability, and tolerance to ... - [Centroid Decomposition](https://unseel.com/cs/centroid-decomposition.html): Centroid decomposition recursively splits a tree at its centroid — the node whose removal leaves balanced subtrees. The result is a recur... - [Chain Replication](https://unseel.com/cs/chain-replication.html): Chain replication arranges replicas in a linear chain: writes enter at the head and propagate node-by-node to the tail, while all reads a... - [Chain-of-Thought Prompting](https://unseel.com/cs/chain-of-thought-prompting.html): Chain-of-thought prompting asks a language model to write out its intermediate reasoning steps before the final answer, which sharply rai... - [Change Data Capture](https://unseel.com/cs/change-data-capture.html): Change Data Capture (CDC) streams every row change in a database directly from the WAL or binlog. Debezium, Maxwell, Postgres logical rep... - [Circuit Breaker](https://unseel.com/cs/circuit-breaker.html): A circuit breaker wraps unreliable remote calls. Trips OPEN after a failure threshold, returns immediate errors for ~30 s, then half-OPEN... - [Closures](https://unseel.com/cs/closures.html): A closure is a function bundled with a reference to the variables from the scope where it was defined, so it can read and mutate that cap... - [COBS Encoding](https://unseel.com/cs/cobs-encoding.html): COBS (Consistent Overhead Byte Stuffing) eliminates zero bytes from a data stream so 0x00 can serve as an unambiguous frame delimiter. Ad... - [Columnar Storage](https://unseel.com/cs/columnar-storage.html): Columnar storage lays each column out contiguously on disk instead of each row, so analytic queries read only the columns they touch and ... - [Compare-and-Swap (CAS)](https://unseel.com/cs/compare-and-swap.html): Compare-and-swap (CAS) is a hardware-level atomic instruction that takes a memory location, an expected value, and a new value: it writes... - [Compilation Pipeline](https://unseel.com/cs/compilation-pipeline.html): Lex → parse → AST → IR → optimize → codegen → assemble → link. Each stage transforms the representation. Every modern compiler — GCC, Cla... - [Completely Fair Scheduler](https://unseel.com/cs/cfs-scheduler.html): The Completely Fair Scheduler is Linux's default CPU scheduler since 2.6.23. It tracks vruntime per task and runs whichever has the small... - [Condition Variable](https://unseel.com/cs/condition-variable.html): A condition variable lets a thread sleep until a predicate becomes true, atomically releasing the held mutex and re-acquiring it on wakeu... - [Connectionist Temporal Classification (CTC)](https://unseel.com/cs/ctc-loss.html): Connectionist Temporal Classification (CTC) trains sequence models on unsegmented data by summing the probability of every valid alignmen... - [Consistent Hashing](https://unseel.com/cs/consistent-hashing.html): Consistent hashing maps both keys and servers onto a ring so that adding or removing a server moves only 1/N of the keys, not all of them... - [Constant-Time Cryptography](https://unseel.com/cs/constant-time-cryptography.html): Constant-time cryptography writes code whose running time and memory-access pattern never depend on secret data, so an attacker measuring... - [Content Delivery Network (CDN)](https://unseel.com/cs/cdn.html): A content delivery network (CDN) is a globally distributed network of edge servers (Points of Presence, PoPs) that cache and serve static... - [Context Switch](https://unseel.com/cs/context-switch.html): A context switch is the operation by which a CPU stops executing one thread, saves its state into memory, loads another thread's saved st... - [Context-Free Grammars](https://unseel.com/cs/context-free-grammar.html): A context-free grammar is a set of production rules that rewrite a single nonterminal into strings of symbols, generating nested, recursi... - [Continuation-Passing Style](https://unseel.com/cs/continuation-passing-style.html): Continuation-passing style (CPS) is a code transformation where every function takes an extra argument — a continuation — that says what ... - [Contrastive Learning](https://unseel.com/cs/contrastive-learning.html): Contrastive learning trains an encoder to map matching pairs (augmentations of the same image) close together and mismatched pairs far ap... - [Control Flow Graph](https://unseel.com/cs/control-flow-graph.html): A control flow graph models a program as basic blocks — straight-line code with single entry and exit — connected by branch edges, giving... - [Control Groups (cgroups)](https://unseel.com/cs/cgroups.html): Control groups (cgroups) are a Linux kernel feature that limits, accounts for, and isolates the resource usage of a group of processes — ... - [Convex Hull (Graham Scan)](https://unseel.com/cs/convex-hull-graham-scan.html): The Graham scan finds the convex hull of a point set in O(n log n) by anchoring on the lowest point, sorting the rest by polar angle, and... - [Convolutional Neural Network (CNN)](https://unseel.com/cs/convolutional-neural-network.html): A convolutional neural network slides small learnable filters across an image, sharing weights to build a hierarchy of features — edges, ... - [Copy-on-Write](https://unseel.com/cs/copy-on-write.html): Copy-on-write (CoW) shares one underlying buffer between two logical owners and lazily duplicates it the moment either attempts to mutate... - [Coroutines](https://unseel.com/cs/coroutines.html): Coroutines are functions that suspend themselves with yield and resume later. They cost ~50 ns per switch, compared to ~1-5 µs for OS thr... - [CORS (Cross-Origin Resource Sharing)](https://unseel.com/cs/cors-policy.html): CORS is a browser security mechanism that restricts JavaScript on origin A from reading responses from origin B unless origin B explicitl... - [Cost-Based Query Optimizer](https://unseel.com/cs/query-optimizer.html): A cost-based query optimizer chooses an execution plan by estimating the cost of join orders and access paths from table statistics, then... - [Count-Min Sketch](https://unseel.com/cs/count-min-sketch.html): The Count-Min Sketch is a sub-linear memory frequency estimator. d hash functions × w columns of counters; query returns min of d cells. ... - [CPU Pipelining](https://unseel.com/cs/cpu-pipelining.html): CPU pipelining overlaps the fetch, decode, execute, memory, and write-back stages of consecutive instructions so a new instruction can fi... - [CQRS: Command Query Responsibility Segregation](https://unseel.com/cs/cqrs-pattern.html): CQRS (Command Query Responsibility Segregation) splits an application into a write model that handles commands and a separate read model ... - [CRC (Cyclic Redundancy Check)](https://unseel.com/cs/crc-cyclic-redundancy.html): CRC is a checksum that treats data as a polynomial and emits the remainder of dividing by a fixed generator. CRC-32 (poly 0x04C11DB7) cat... - [CRDTs (Conflict-free Replicated Data Types)](https://unseel.com/cs/crdt.html): CRDTs are data structures whose replicas converge to the same state under any order of merges. They turn distributed conflict resolution ... - [Cross-Validation](https://unseel.com/cs/cross-validation.html): Cross-validation rotates which slice of data is held out for testing, so your accuracy estimate isn't a lucky split. K-fold averages k tr... - [Cuckoo Hashing](https://unseel.com/cs/cuckoo-hashing.html): Cuckoo hashing is an open-addressing hash table that uses two hash functions and evicts incumbents like a cuckoo bird. It guarantees wors... - [CUDA & the SIMT Model](https://unseel.com/cs/cuda-simt.html): CUDA's SIMT model runs thousands of GPU threads in lockstep groups of 32 called warps — one instruction stream drives every thread, so di... - [Dancing Links](https://unseel.com/cs/dancing-links.html): Knuth's dancing links is a doubly linked list trick that removes and restores nodes in O(1) by preserving each node's neighbor pointers. ... - [Data Deduplication](https://unseel.com/cs/data-deduplication.html): Data deduplication splits files into chunks, hashes each, and stores identical chunks only once. VM backups shrink 10-50× because most di... - [Database Sharding](https://unseel.com/cs/database-sharding.html): Database sharding splits one logical database across many physical machines so that no single node has to hold all the data or absorb all... - [Deadlock](https://unseel.com/cs/deadlock.html): Five philosophers, five forks, a circular wait — no one can eat. The four conditions for deadlock: mutual exclusion, hold and wait, no pr... - [Decision Tree](https://unseel.com/cs/decision-tree.html): A decision tree is an interpretable classifier that recursively splits data on the feature that most reduces impurity, building an if-the... - [Deep Q-Networks (DQN)](https://unseel.com/cs/deep-q-network.html): A Deep Q-Network (DQN) is a reinforcement-learning agent that uses a convolutional neural net to approximate the action-value function Q(... - [Delaunay Triangulation](https://unseel.com/cs/delaunay-triangulation.html): Delaunay triangulation connects points into triangles whose circumcircles contain no other point. Maximizes minimum angle, avoids slivers... - [Depth-First Search](https://unseel.com/cs/graph-dfs.html): 3D graph of connected nodes. DFS dives deep along one path using a stack, then backtracks when it hits a dead end. Show the visited path ... - [Differential Privacy](https://unseel.com/cs/differential-privacy.html): Differential privacy is a mathematical guarantee that a query's output barely changes whether or not any single person is in the dataset,... - [Diffie-Hellman Key Exchange](https://unseel.com/cs/diffie-hellman.html): Diffie-Hellman key exchange (DH), invented by Whitfield Diffie and Martin Hellman in 1976 (with prior work by Ralph Merkle), is the first... - [Diffusion Models](https://unseel.com/cs/diffusion-models.html): A diffusion model generates data by learning to reverse a step-by-step noising process: it trains a neural network to predict the noise a... - [Digital Signatures (ECDSA)](https://unseel.com/cs/ecdsa-signatures.html): ECDSA proves a message came from the holder of a private key: a one-time nonce maps the message hash onto an elliptic curve so anyone can... - [Dijkstra's Algorithm](https://unseel.com/cs/dijkstra.html): 3D graph with weighted edges. The frontier expands, edges relax, and the shortest path lights up green. - [Dinic's Max Flow](https://unseel.com/cs/dinic-max-flow.html): Dinic's algorithm computes maximum flow by repeatedly building a BFS level graph and saturating it with a blocking flow, giving an O(V²E)... - [Dining Philosophers](https://unseel.com/cs/dining-philosophers.html): The dining philosophers problem is Dijkstra's 1965 concurrency puzzle: five philosophers share five forks and deadlock the instant each g... - [Direct Memory Access (DMA)](https://unseel.com/cs/dma.html): Direct Memory Access (DMA) is a hardware mechanism allowing peripherals (NICs, SSDs, GPUs) to read/write system memory directly without i... - [Distributed Lock](https://unseel.com/cs/distributed-lock.html): Distributed locks provide mutual exclusion across processes and machines. Redis Redlock, ZooKeeper, etcd, DynamoDB. The fundamental gotch... - [DNS over HTTPS (DoH)](https://unseel.com/cs/dns-over-https.html): DNS over HTTPS (DoH) tunnels your DNS queries inside an encrypted HTTPS connection (RFC 8484) so eavesdroppers on the network can't see w... - [DNS Resolution](https://unseel.com/cs/dns-resolution.html): A recursive resolver walks from root → TLD → authoritative name server to translate a domain into an IP. Cache aggressively, because ever... - [DNSSEC](https://unseel.com/cs/dnssec.html): DNSSEC adds public-key signatures to DNS so a resolver can cryptographically verify that an answer came from the real zone owner and wasn... - [DPLL SAT Solver](https://unseel.com/cs/dpll-sat-solver.html): DPLL is a backtracking search that decides boolean satisfiability by guessing a variable's value, propagating forced unit clauses, and ba... - [Dropout](https://unseel.com/cs/dropout.html): Dropout is a regularization technique that randomly switches off a fraction of neurons on each training step, forcing the network to spre... - [Dynamic Programming · Solve Once, Reuse](https://unseel.com/cs/dynamic-programming.html): Dynamic Programming explained in 3D — watch a recursion tree explode with duplicates, then collapse with memoization. Interactive animati... - [eBPF](https://unseel.com/cs/ebpf.html): eBPF is a sandboxed bytecode VM inside the Linux kernel. Programs are statically verified, JIT-compiled, and attached to syscall, packet,... - [ECC Memory](https://unseel.com/cs/ecc-memory.html): ECC memory uses Hamming SEC-DED codes — 64 data bits plus 8 parity bits per word — to silently correct any single-bit flip and detect any... - [Edit Distance (Levenshtein)](https://unseel.com/cs/edit-distance.html): Edit distance, or Levenshtein distance, is the minimum number of single-character insertions, deletions, and substitutions needed to turn... - [Edmonds-Karp](https://unseel.com/cs/edmonds-karp.html): Edmonds-Karp is Ford-Fulkerson with BFS — each augmenting path is the shortest in edge count. The result: a guaranteed O(VE²) bound and a... - [Elliptic Curve Cryptography (ECC)](https://unseel.com/cs/elliptic-curve-cryptography.html): Elliptic Curve Cryptography (ECC) replaces the multiplicative group of integers mod p with the additive group of points on an elliptic cu... - [Encryption · Lock & Key](https://unseel.com/cs/encryption.html): Encryption explained in 3D — watch a readable message pass through a lock and emerge as garbled ciphertext. Symmetric keys, RSA public-ke... - [epoll](https://unseel.com/cs/epoll.html): epoll is the Linux-specific scalable event notification mechanism — replacing the classical select/poll (O(n) per call) with O(1) per-eve... - [Euler Tour Tree](https://unseel.com/cs/euler-tour-tree.html): Euler tour linearizes a tree by DFS so any subtree maps to a contiguous range [in[v], out[v]]. Pair with a segment tree to answer subtree... - [Event Loop](https://unseel.com/cs/event-loop.html): The event loop is a single-threaded scheduler that runs callbacks from a queue as I/O completes, letting one thread juggle thousands of c... - [Event Sourcing](https://unseel.com/cs/event-sourcing.html): Event sourcing is an architectural pattern where the source of truth is an append-only log of immutable events (e.g., OrderPlaced, Paymen... - [Event-Driven Architecture](https://unseel.com/cs/event-driven-architecture.html): Event-driven architecture is a pattern where services communicate by publishing and subscribing to events on a shared bus (Kafka, RabbitM... - [Exactly-Once Delivery](https://unseel.com/cs/exactly-once-delivery.html): Exactly-once delivery is impossible without coordination — but achievable in practice via idempotent consumers plus dedup keys, or Kafka'... - [Expectation-Maximization (EM)](https://unseel.com/cs/expectation-maximization.html): Expectation-Maximization (EM) is an iterative algorithm that fits maximum-likelihood parameters when data has hidden variables, alternati... - [False Sharing](https://unseel.com/cs/false-sharing.html): False sharing happens when two CPUs each write to logically-independent variables that reside on the same cache line (typically 64 bytes ... - [Fast Fourier Transform](https://unseel.com/cs/fft.html): The Fast Fourier Transform computes the discrete Fourier transform in O(n log n) time instead of O(n²). At n = 220, that's ~20 million op... - [Federated Learning](https://unseel.com/cs/federated-learning.html): Federated learning trains one shared model across millions of devices by sending model updates instead of raw data: each device runs loca... - [Feistel Network](https://unseel.com/cs/feistel-network.html): A Feistel network splits a block in half and mixes the halves through several rounds using a round function and subkeys, so the exact sam... - [Fenwick Tree (Binary Indexed Tree)](https://unseel.com/cs/fenwick-tree.html): A Fenwick tree, also called a binary indexed tree, supports point updates and prefix sums on an array in O(log n) per operation using jus... - [Fibonacci Heap](https://unseel.com/cs/fibonacci-heap.html): A Fibonacci heap is a priority queue with amortized O(1) insert, find-min, decrease-key, and merge, and amortized O(log n) extract-min. D... - [Finite State Machine](https://unseel.com/cs/finite-state-machine.html): A finite set of states connected by labeled transitions. Triggered by inputs, the machine moves through states deterministically. Models ... - [Fisher-Yates Shuffle](https://unseel.com/cs/fisher-yates-shuffle.html): Fisher-Yates produces every one of n! permutations with equal probability in O(n) time using one swap per position. Knuth's algorithm 3.4... - [FlashAttention](https://unseel.com/cs/flash-attention.html): FlashAttention computes exact attention without ever materializing the N×N score matrix, tiling queries, keys, and values through fast on... - [Floating-Point (IEEE 754)](https://unseel.com/cs/ieee-754-floating-point.html): IEEE 754 floating-point stores a real number as a sign bit, a biased exponent, and a fraction (mantissa), encoding value = ±1.f × 2^(e−bi... - [Floyd-Warshall](https://unseel.com/cs/floyd-warshall.html): A triple loop over all pairs and intermediate vertices — O(V³) dynamic programming that fills a complete distance matrix. The textbook ex... - [Ford-Fulkerson Max Flow](https://unseel.com/cs/ford-fulkerson.html): Ford-Fulkerson computes the maximum flow in a directed network by repeatedly pushing flow along augmenting paths in the residual graph. I... - [Futex](https://unseel.com/cs/futex.html): Futex is the Linux kernel primitive (since 2.5.7) that lets userspace lock fast-paths without syscalls and enters the kernel only when co... - [Futures & Promises](https://unseel.com/cs/futures-promises.html): A future (or promise) is a placeholder object for a value that isn't ready yet, letting you register callbacks and compose asynchronous w... - [Garbage Collection](https://unseel.com/cs/garbage-collection.html): Automatically reclaim memory objects the program can no longer reach. Mark from roots, sweep the unreachable. Modern GCs are generational... - [Gaussian Mixture Models](https://unseel.com/cs/gaussian-mixture-model.html): A Gaussian mixture model represents data as a weighted blend of K Gaussian components, fit by the Expectation–Maximization algorithm in O... - [Gaussian Process Regression](https://unseel.com/cs/gaussian-process-regression.html): Gaussian process regression puts a distribution over functions: instead of one prediction it returns a mean plus a calibrated uncertainty... - [Generational Garbage Collection](https://unseel.com/cs/generational-gc.html): Generational garbage collection exploits the weak generational hypothesis — most objects die young — by splitting the heap into a young a... - [Generative Adversarial Network (GAN)](https://unseel.com/cs/generative-adversarial-network.html): A generative adversarial network (GAN) trains two neural networks against each other — a generator that fabricates samples and a discrimi... - [Genetic Algorithms](https://unseel.com/cs/genetic-algorithm.html): A genetic algorithm is a population-based optimizer that evolves candidate solutions over generations using selection, crossover, and mut... - [Gossip Protocol](https://unseel.com/cs/gossip-protocol.html): A gossip (epidemic) protocol disseminates information across a distributed cluster by having each node periodically pick a random peer an... - [Gradient Boosting](https://unseel.com/cs/gradient-boosting.html): Gradient boosting builds a strong predictor by adding shallow trees one at a time, each fit to the negative gradient (the residual errors... - [Gradient Clipping](https://unseel.com/cs/gradient-clipping.html): Gradient clipping caps the size of the gradient before each weight update — by norm or by value — so a single huge step can't blow up tra... - [Gradient Descent](https://unseel.com/cs/gradient-descent.html): Gradient descent is the iterative optimization algorithm that minimizes a loss function L(θ) by repeatedly updating parameters &the... - [Graph Neural Network](https://unseel.com/cs/graph-neural-network.html): A graph neural network learns on graph-structured data by repeatedly passing messages between connected nodes: each node aggregates its n... - [GraphQL](https://unseel.com/cs/graphql.html): GraphQL is a query language and runtime for APIs developed by Facebook in 2012 (open-sourced 2015). Unlike REST's resource-per-endpoint m... - [Gray Code Counter](https://unseel.com/cs/gray-code-counter.html): Gray code is a binary numbering system where consecutive values differ in exactly one bit. Used in mechanical rotary encoders, FSM state ... - [Greedy Algorithm](https://unseel.com/cs/greedy-algorithm.html): Make the best local choice at each step and hope it adds up. Works for coin change (US denominations), activity selection, Huffman coding... - [Green Threads](https://unseel.com/cs/green-threads.html): Green threads are user-space threads scheduled by a runtime instead of the kernel. Goroutines, Erlang processes, Java virtual threads. Mi... - [Group Normalization](https://unseel.com/cs/group-normalization.html): Group Normalization splits a layer's channels into fixed groups and normalizes each group per sample, so it computes the same statistics ... - [gRPC & Protocol Buffers](https://unseel.com/cs/grpc-protobuf.html): gRPC is a binary remote-procedure-call framework that runs over HTTP/2 and serializes messages with Protocol Buffers — a schema-defined, ... - [Hamming Code](https://unseel.com/cs/hamming-code.html): Hamming code is a linear block code that adds k parity bits to 2^k - k - 1 data bits, correcting any single-bit error. Hamming (7,4) corr... - [Hash Join](https://unseel.com/cs/hash-join.html): A hash join matches rows from two tables by building an in-memory hash table on the smaller table's join key, then probing it with each r... - [Hash Table](https://unseel.com/cs/hash-chaining.html): 3D animation showing how a hash table resolves collisions by chaining entries in linked lists per bucket. - [Hazard Pointers](https://unseel.com/cs/hazard-pointers.html): Hazard pointers let lock-free readers publish the nodes they're using so no other thread frees that memory out from under them, solving t... - [Heap · Priority Queue](https://unseel.com/cs/heap.html): Heap data structure explained in 3D — watch extract-min, bubble-up, sift-down, and O(n) heapify in action. Interactive animation on Unseel. - [Heapsort](https://unseel.com/cs/heapsort.html): Heapsort builds a max-heap from the array in O(n), then repeatedly extracts the max and places it at the end. It guarantees O(n log n) wo... - [Heavy-Light Decomposition](https://unseel.com/cs/heavy-light-decomposition.html): Heavy-light decomposition partitions a tree into paths so that any root-leaf path crosses O(log N) chains. With a segment tree per chain ... - [Hidden Markov Models](https://unseel.com/cs/hidden-markov-model.html): A hidden Markov model (HMM) is a probabilistic model where an unobserved Markov chain of states emits observable symbols; the Viterbi alg... - [Hilbert Curve](https://unseel.com/cs/hilbert-curve.html): The Hilbert curve is a continuous space-filling fractal that maps a unit interval onto the unit square, visiting every point with strong ... - [Hindley-Milner](https://unseel.com/cs/hindley-milner.html): Hindley-Milner is the type inference algorithm at the heart of ML, Haskell, and OCaml. Algorithm W gathers constraints from an expression... - [Hinted Handoff](https://unseel.com/cs/hinted-handoff.html): When a target replica is unreachable, another node stores a hint locally and replays it once the replica returns. Keeps writes alive duri... - [HMAC](https://unseel.com/cs/hmac.html): HMAC is a message authentication code built from a hash function and a secret key, hashing the message twice with key-derived inner and o... - [Homomorphic Encryption](https://unseel.com/cs/homomorphic-encryption.html): Homomorphic encryption lets you compute directly on encrypted data — add and multiply ciphertexts so that decrypting the result gives the... - [Hopcroft-Karp](https://unseel.com/cs/hopcroft-karp.html): Hopcroft-Karp finds a maximum bipartite matching in O(E√V) — better than naive O(VE). Layered BFS picks the level structure, DFS finds ve... - [Hopcroft-Tarjan Articulation Points](https://unseel.com/cs/hopcroft-tarjan-articulation.html): The Hopcroft-Tarjan algorithm finds articulation points (cut vertices) — vertices whose removal disconnects a graph — in a single O(V+E) ... - [HTTP Request](https://unseel.com/cs/http-request.html): Method, path, headers, optional body — client sends. Status code, headers, body — server replies. Stateless by design, which is why cooki... - [HTTP/2](https://unseel.com/cs/http-2.html): HTTP/2 replaces HTTP/1.1's text protocol with binary frames over a single multiplexed TCP connection. HPACK compresses headers, but TCP h... - [HTTP/2](https://unseel.com/cs/http2.html): HTTP/2 multiplexes many requests over one TCP connection using binary framing and HPACK header compression, eliminating HTTP/1.1's head-o... - [HTTP/3](https://unseel.com/cs/http-3.html): HTTP/3 is the third major version of HTTP, standardized as RFC 9114 in June 2022. Unlike HTTP/2 (which uses TCP), HTTP/3 runs on QUIC (RF... - [Huffman Coding](https://unseel.com/cs/huffman-coding.html): Huffman coding is a lossless compression scheme that assigns variable-length prefix codes to symbols by frequency. Build a min-heap, merg... - [Hybrid Logical Clock](https://unseel.com/cs/hybrid-logical-clock.html): A hybrid logical clock pairs wall-clock milliseconds with a Lamport-style logical counter. Preserves causality without TrueTime hardware.... - [HyperLogLog](https://unseel.com/cs/hyperloglog.html): HyperLogLog counts unique elements using just ~12 KB of memory for cardinalities up to 10^9, with ~1.625% standard error. Counts leading ... - [I/O Multiplexing (select, poll, epoll, kqueue)](https://unseel.com/cs/io-multiplexing.html): I/O multiplexing is the kernel facility that lets a single thread wait on many file descriptors and learn which are ready. select scans e... - [Idempotency Key](https://unseel.com/cs/idempotency-key.html): An idempotency key is a client-generated unique ID per request. The server processes the request once and caches the result; retries with... - [Implicit Treap](https://unseel.com/cs/treap-implicit-key.html): An implicit treap represents a sequence using a treap whose in-order position serves as the key. Supports split, merge, insert at any ind... - [In-Context Learning](https://unseel.com/cs/in-context-learning.html): In-context learning is the ability of a large language model to learn a new task from a few examples placed in its prompt — adapting its ... - [Insertion Sort](https://unseel.com/cs/insertion-sort.html): Insertion sort builds a sorted array one element at a time by shifting larger items right and slotting each new element into place. It ru... - [Interval Tree](https://unseel.com/cs/interval-tree.html): An interval tree is a balanced binary search tree augmented with each subtree's maximum endpoint. It finds every interval overlapping a q... - [Inverted Index](https://unseel.com/cs/inverted-index.html): An inverted index maps each term to the list of documents containing it. It's the data structure underneath every full-text search engine... - [io_uring](https://unseel.com/cs/io-uring.html): io_uring is Linux's modern async I/O API (2019, kernel 5.1+). Shared submission and completion rings between userspace and kernel elimina... - [ISO 8601 Date Handling](https://unseel.com/cs/iso8601-date-handling.html): ISO 8601 specifies a date format YYYY-MM-DDTHH:MM:SS plus or minus HH:MM that is unambiguous, sortable, and machine-parseable. Foundation... - [JIT Compilation](https://unseel.com/cs/jit-compilation.html): Just-in-Time compilation converts bytecode or IR to native machine code at runtime. Tiered pipelines — interpreter, baseline JIT, optimiz... - [Johnson's Algorithm](https://unseel.com/cs/johnson-shortest-paths.html): Johnson's algorithm computes shortest paths between all pairs of vertices in a sparse, possibly negatively-weighted directed graph. It ru... - [Journaling File Systems](https://unseel.com/cs/journaling-filesystem.html): A journaling file system writes intended changes to a log before touching the real on-disk structures, so a crash mid-write can be replay... - [JSON Web Tokens (JWT)](https://unseel.com/cs/jwt.html): A JSON Web Token (JWT) is a signed, self-contained string of three Base64url parts — header.payload.signature — that carries claims so a ... - [k-d Tree](https://unseel.com/cs/kd-tree.html): A k-d tree is a binary tree that partitions k-dimensional space by alternating axes at each level — split on x at the root, y at depth 1,... - [K-Means Clustering](https://unseel.com/cs/k-means-clustering.html): K-means clustering partitions n points into k groups by alternately assigning each point to its nearest centroid and recomputing each cen... - [K-Nearest Neighbors (KNN)](https://unseel.com/cs/k-nearest-neighbors.html): K-Nearest Neighbors (KNN) classifies a point by a majority vote of its k closest labeled examples — no training, just distance. A lazy le... - [Karatsuba Multiplication](https://unseel.com/cs/karatsuba-multiplication.html): Karatsuba multiplication multiplies two n-digit numbers with three recursive half-size products instead of four, dropping the schoolbook ... - [Knapsack Problem](https://unseel.com/cs/knapsack-dp.html): The 0/1 knapsack problem picks a subset of items to maximize total value without exceeding a weight limit, solved by dynamic programming ... - [Knowledge Distillation](https://unseel.com/cs/knowledge-distillation.html): Knowledge distillation trains a small student network to mimic a large teacher's soft probability distribution — logits softened by a tem... - [Knuth-Morris-Pratt String Search](https://unseel.com/cs/kmp-algorithm.html): The Knuth-Morris-Pratt algorithm finds a pattern of length m inside a text of length n in O(n + m) time, never re-examining a text charac... - [Kosaraju's Strongly Connected Components](https://unseel.com/cs/kosaraju-scc.html): Kosaraju's algorithm finds strongly connected components with two DFS passes — forward on the original graph, reverse on the transpose. I... - [Kruskal's MST](https://unseel.com/cs/kruskal-mst.html): Sort edges by weight, add smallest-first, skip any that would create a cycle. Union-find tracks connectivity in near-constant time. Optim... - [KV Cache](https://unseel.com/cs/kv-cache.html): A KV cache stores the key and value tensors of every past token so a transformer can generate each new token in O(n) work instead of reco... - [L1 & L2 Regularization](https://unseel.com/cs/regularization.html): L1 and L2 regularization add a penalty on weight size to a model's loss to curb overfitting: L1 (Lasso) drives weights exactly to zero fo... - [Lambda Calculus](https://unseel.com/cs/lambda-calculus.html): Lambda calculus is a minimal language with just three constructs — variables, one-argument functions, and application — that is Turing-co... - [Lamport Clocks](https://unseel.com/cs/lamport-clocks.html): A Lamport clock is a logical timestamp scheme that establishes a "happens-before" partial order across events in a distributed system wit... - [Leader Election](https://unseel.com/cs/leader-election.html): Leader election is the problem of choosing a single coordinator from a group of distributed processes — necessary because operations like... - [Leaky Bucket Rate Limit](https://unseel.com/cs/leaky-bucket-rate-limit.html): The leaky bucket is a FIFO queue that drains at a constant rate. Bursty traffic fills the bucket; output stays smooth at exactly rate r r... - [Lexer / Tokenizer](https://unseel.com/cs/lexer-tokenizer.html): A lexer (tokenizer) is the first compiler stage: it scans raw source characters left-to-right with a finite-state machine and emits a str... - [Li Chao Tree](https://unseel.com/cs/li-chao-tree.html): A Li Chao tree is a segment tree over the x-axis where every node stores a single line, answering minimum-at-x (or maximum-at-x) queries ... - [Line Segment Intersection (Bentley-Ottmann)](https://unseel.com/cs/line-segment-intersection.html): The Bentley-Ottmann algorithm reports all k intersections among n line segments in O((n + k) log n) time by sweeping a vertical line left... - [Linearizability](https://unseel.com/cs/linearizability.html): Linearizability is the strongest single-object consistency model: every operation appears to take effect instantly at one point between i... - [Link-Cut Tree](https://unseel.com/cs/link-cut-tree.html): A link-cut tree maintains a forest of rooted trees under link, cut, and path queries — all in O(log n) amortized. Sleator-Tarjan's prefer... - [Linked List](https://unseel.com/cs/linked-list.html): 3D chain of floating nodes connected by glowing pointer arrows, showing insert and delete operations. - [Locality-Sensitive Hashing](https://unseel.com/cs/locality-sensitive-hashing.html): LSH is a family of hashes where similar inputs collide with high probability, dissimilar with low. Banding on MinHash, hyperplanes for co... - [Lock-Free Data Structures](https://unseel.com/cs/lock-free-data-structures.html): A lock-free data structure guarantees that some thread always makes progress — no thread can be blocked indefinitely by another's stallin... - [Log-Structured File Systems](https://unseel.com/cs/log-structured-filesystem.html): A log-structured file system treats the entire disk as one append-only log, turning random small writes into large sequential ones for fa... - [Log-Structured Merge](https://unseel.com/cs/log-structured-merge.html): A log-structured merge architecture pipes writes into an append-only log and tiered SSTables, then merges levels in the background. The t... - [Log-Structured Merge Tree](https://unseel.com/cs/lsm-tree.html): An LSM tree buffers writes in memory, flushes them as immutable sorted files on disk, and merges those files in the background. It's how ... - [Logistic Regression](https://unseel.com/cs/logistic-regression.html): Logistic regression fits a sigmoid to a weighted sum of features, mapping any input to a probability between 0 and 1 — the workhorse line... - [Low-Rank Adaptation (LoRA)](https://unseel.com/cs/low-rank-adaptation.html): LoRA fine-tunes a giant model by freezing its weights and training two tiny low-rank matrices B and A whose product BA is added to each w... - [LR(1) Parsing](https://unseel.com/cs/lr-parsing.html): LR(1) parsing builds a parse tree bottom-up using a shift-reduce stack driven by a precomputed state table, deciding each step from one l... - [LRU Cache](https://unseel.com/cs/cache-lru.html): A doubly linked list plus hash map delivers O(1) get, put, and evict. Access an item — it jumps to the front. Cache full — evict the back... - [LZW Compression](https://unseel.com/cs/lzw-compression.html): LZW (Lempel-Ziv-Welch) is a dictionary-based lossless compressor that builds a code table on the fly. It emits only codes — the decoder r... - [Maglev Load Balancing](https://unseel.com/cs/maglev-load-balancing.html): Maglev is Google's software load balancer that builds a fixed-size lookup table by consistent hashing, spreading connections almost perfe... - [Manacher's Algorithm](https://unseel.com/cs/manacher-algorithm.html): Manacher's algorithm finds all palindromic substrings of a string s in O(n) time. The naive approach (expand around each center) is O(n²)... - [MapReduce](https://unseel.com/cs/mapreduce.html): MapReduce is a programming model for processing huge datasets across a cluster: a map function emits key-value pairs in parallel, the fra... - [Marching Cubes](https://unseel.com/cs/marching-cubes.html): Marching cubes extracts a triangle mesh from a 3D scalar field by classifying each cube cell's 8 corners as inside or outside the surface... - [Mark-and-Sweep Garbage Collection](https://unseel.com/cs/mark-sweep-gc.html): Mark-and-sweep is a tracing garbage collector that finds live memory by walking pointers from a set of roots, marking everything reachabl... - [Matrix Exponentiation](https://unseel.com/cs/matrix-exponentiation.html): Matrix exponentiation raises a linear recurrence's transition matrix to the nth power in O(k³ log n) time, jumping billions of steps ahea... - [Memoization](https://unseel.com/cs/memoization.html): Recursion with a lookup table — turning exponential algorithms into linear ones. fib(40) drops from 2^40 operations to 40. The top-down f... - [Memory Barriers (Fences)](https://unseel.com/cs/memory-barriers.html): A memory barrier (or fence) is an instruction that prevents the CPU or compiler from reordering memory operations across it. Modern CPUs ... - [Memory Consistency Models](https://unseel.com/cs/memory-consistency-models.html): A memory consistency model is the contract between hardware and software defining which reorderings of reads and writes one thread may ob... - [Memory-Mapped I/O](https://unseel.com/cs/memory-mapped-io.html): Memory-mapped I/O uses mmap to attach a file's pages directly into a process address space. Reads and writes become ordinary loads and st... - [Memtable Flush](https://unseel.com/cs/memtable-flush.html): Writes land in an in-memory memtable (a sorted map). When it hits ~64 MB, the engine flushes it as an immutable sorted SSTable on disk an... - [Merge Sort](https://unseel.com/cs/merge-sort.html): Split the array in half, recursively sort each side, then merge the sorted halves. Guaranteed O(n log n), stable, predictable — used as t... - [Merkle Tree](https://unseel.com/cs/merkle-tree.html): A binary tree where every node hashes its children. The root is a fingerprint of all the data. Prove any leaf exists with just log(n) has... - [MESI Cache Coherence Protocol](https://unseel.com/cs/mesi-protocol.html): MESI is the cache coherence protocol that keeps multicore CPU caches consistent by tagging every cache line as Modified, Exclusive, Share... - [Microservice Saga Orchestration](https://unseel.com/cs/microservice-saga-orchestration.html): A saga orchestrator drives a multi-step microservice transaction from a central coordinator (Temporal, Step Functions, Camunda). Choreogr... - [Miller-Rabin Primality Test](https://unseel.com/cs/miller-rabin-primality.html): The Miller-Rabin primality test is a fast randomized algorithm that decides whether a number is prime in O(k log³ n) time by checking k r... - [MinHash](https://unseel.com/cs/minhash.html): MinHash estimates Jaccard similarity between two sets in tiny constant memory. Hash every element, keep the minimum, repeat with k functi... - [Mixture of Experts (MoE)](https://unseel.com/cs/mixture-of-experts.html): A Mixture of Experts (MoE) replaces a dense feed-forward layer with many expert subnetworks plus a router that sends each token to just t... - [Mo's Algorithm](https://unseel.com/cs/mo-algorithm.html): Mo's algorithm answers q offline range queries on an array of size n in total time O((n+q)√n) by reordering queries cleverly. Sort querie... - [Model Quantization](https://unseel.com/cs/model-quantization.html): Model quantization stores and computes a neural network's weights in 8- or 4-bit integers instead of 32-bit floats, shrinking the model 4... - [Modular Exponentiation](https://unseel.com/cs/modular-exponentiation.html): Modular exponentiation computes a^b mod m in O(log b) multiplications by repeatedly squaring and reducing — the workhorse of RSA, Diffie-... - [Monads](https://unseel.com/cs/monads.html): A monad is a design pattern for chaining computations that carry a context — optionality, errors, state, lists, or I/O — by threading the... - [Monitor Pattern](https://unseel.com/cs/monitor-pattern.html): A monitor is an object whose methods are mutually exclusive — only one thread runs any monitor method at a time. Implicit lock + conditio... - [Monte Carlo Tree Search (MCTS)](https://unseel.com/cs/monte-carlo-tree-search.html): Monte Carlo Tree Search (MCTS) builds a search tree one node at a time using random rollouts, then balances exploration against exploitat... - [Morton Curve (Z-Order)](https://unseel.com/cs/morton-curve-z-order.html): The Morton curve, or Z-order, is a space-filling curve that maps multi-dimensional coordinates to a 1D index by interleaving bits. For 2D... - [MTU and IP Fragmentation](https://unseel.com/cs/mtu-fragmentation.html): The MTU (Maximum Transmission Unit) is the largest packet size a network link can carry without fragmentation — Ethernet defaults to 1500... - [Mutex vs Semaphore](https://unseel.com/cs/mutex-vs-semaphore.html): A mutex enforces mutual exclusion: one owner, one critical section, locked and unlocked by the same thread. A semaphore is a signed count... - [MVCC — Multi-Version Concurrency Control](https://unseel.com/cs/mvcc.html): MVCC (multi-version concurrency control) lets a database run readers and writers concurrently without blocking each other by keeping mult... - [Nagle's Algorithm](https://unseel.com/cs/nagle-algorithm.html): Nagle's algorithm (RFC 896, 1984, John Nagle) reduces small-packet inefficiency in TCP by buffering small writes until either (a) the... - [Naive Bayes Classifier](https://unseel.com/cs/naive-bayes.html): A Naive Bayes classifier applies Bayes' rule while pretending every feature is independent given the class — a wrong assumption that stil... - [NAT — Network Address Translation](https://unseel.com/cs/nat.html): NAT lets many private hosts share one public IP by rewriting source ports on outbound packets. It's why your home router works, why P2P i... - [Neural Network · Learning Machine](https://unseel.com/cs/neural-network.html): Neural Networks explained in 3D — see signals cascade through layers, weights adjust, and backpropagation send errors backward. Interacti... - [Neural Network Pruning](https://unseel.com/cs/network-pruning.html): Neural network pruning deletes the weights that contribute least to a model's output, leaving a sparse network that runs faster and fits ... - [Normalizing Flows](https://unseel.com/cs/normalizing-flows.html): A normalizing flow turns a simple distribution like a Gaussian into a complex one by pushing samples through a chain of invertible, diffe... - [NUMA](https://unseel.com/cs/numa.html): On NUMA hardware each socket has its own local DRAM. Local access is ~80 ns; reaching another socket's memory across UPI/Infinity Fabric ... - [OAuth 2.0](https://unseel.com/cs/oauth.html): OAuth 2.0 is a delegated authorization framework that lets an app act on your behalf by exchanging a short-lived authorization code for a... - [Octree](https://unseel.com/cs/octree.html): An octree subdivides 3D space into eight octants whenever a cell exceeds capacity. Used for 3D collision detection, point-cloud indexing,... - [OSPF (Open Shortest Path First)](https://unseel.com/cs/ospf.html): OSPF is a link-state interior gateway protocol where routers flood link-state advertisements, build an identical map of the network, and ... - [Out-of-Order Execution](https://unseel.com/cs/out-of-order-execution.html): Out-of-order execution lets a CPU run independent instructions as soon as their inputs are ready instead of in program order, hiding cach... - [Outbox Pattern](https://unseel.com/cs/outbox-pattern.html): The outbox pattern writes a domain event to a same-database outbox table inside the business transaction, then a separate poller publishe... - [Ownership & Borrow Checking](https://unseel.com/cs/ownership-borrow-checker.html): Ownership and borrow checking are Rust's compile-time rules that guarantee memory safety without a garbage collector: every value has exa... - [Page Fault & Demand Paging](https://unseel.com/cs/page-fault-demand-paging.html): A page fault is a CPU trap into the kernel when a process touches a virtual page with no valid physical backing. Demand paging exploits t... - [Page Replacement Algorithms](https://unseel.com/cs/page-replacement-algorithms.html): Page replacement algorithms decide which memory page to evict on a page fault when RAM is full — FIFO, LRU, the Clock approximation, and ... - [PageRank](https://unseel.com/cs/pagerank.html): PageRank ranks nodes in a graph by the steady-state probability of a random surfer landing on them. It made Google in 1998 and now powers... - [Paging](https://unseel.com/cs/paging.html): Paging splits memory into fixed-size pages (typically 4 KB) and translates virtual addresses to physical via per-process page tables. The... - [Parity Check Bit](https://unseel.com/cs/parity-check-bit.html): A parity bit appends one redundant bit so the total count of 1s is even (or odd). The simplest error-detection scheme — catches every sin... - [Password Hashing (bcrypt, Argon2)](https://unseel.com/cs/password-hashing.html): Password hashing stores a password as a deliberately slow, salted one-way hash (bcrypt, scrypt, Argon2) so that a database breach hands a... - [Paxos Consensus](https://unseel.com/cs/paxos.html): Paxos is a family of consensus protocols that lets a set of unreliable processes agree on a single value despite crashes and partitions. ... - [Perlin Noise](https://unseel.com/cs/perlin-noise.html): Perlin noise is a gradient-noise function that turns a lattice of random gradient vectors into smooth, natural-looking randomness — the m... - [Persistent Data Structures](https://unseel.com/cs/persistent-data-structures.html): A persistent data structure preserves all previous versions when modified — every update returns a new version while sharing unchanged st... - [Persistent Segment Tree](https://unseel.com/cs/persistent-segment-tree.html): A persistent segment tree keeps every historical version of the array available for query. Each update creates O(log n) new nodes that sh... - [Piece Table](https://unseel.com/cs/piece-table.html): A piece table represents an editable document with two immutable buffers plus a sequence of piece descriptors. Edits splice pieces — byte... - [Point-in-Polygon (Ray Casting)](https://unseel.com/cs/point-in-polygon.html): Ray casting decides whether a point lies inside a polygon by shooting a ray to infinity and counting edge crossings: odd means inside, ev... - [Positional Encoding](https://unseel.com/cs/positional-encoding.html): Positional encoding injects word order into a transformer, which otherwise sees an unordered bag of tokens, by adding sinusoidal or learn... - [Prim's Algorithm](https://unseel.com/cs/prim-mst.html): Prim's algorithm builds a minimum spanning tree (MST) of a connected weighted graph by starting from any vertex and repeatedly adding the... - [Principal Component Analysis (PCA)](https://unseel.com/cs/principal-component-analysis.html): Principal Component Analysis (PCA) is a linear dimensionality-reduction method that rotates data onto the orthogonal axes of greatest var... - [Priority Inheritance](https://unseel.com/cs/priority-inheritance.html): Priority inheritance is a scheduling protocol where a low-priority task holding a lock temporarily inherits the priority of the highest-p... - [Priority Queue](https://unseel.com/cs/priority-queue.html): A priority queue is an abstract data type that always returns the smallest (or largest) element in O(log n) time. The classic implementat... - [Process Lifecycle: fork, exec, wait](https://unseel.com/cs/process-lifecycle-fork-exec.html): On Unix every new program is born the same way: fork clones the calling process, exec overwrites the clone with a new program image, and ... - [Process Scheduling](https://unseel.com/cs/process-scheduling.html): Process scheduling decides which runnable thread gets the CPU next. Modern kernels juggle hundreds of threads on a handful of cores using... - [Proximal Policy Optimization (PPO)](https://unseel.com/cs/proximal-policy-optimization.html): Proximal Policy Optimization (PPO) is a clipped policy-gradient reinforcement learning algorithm that takes the biggest safe step toward ... - [Publish-Subscribe Pattern](https://unseel.com/cs/publish-subscribe-pattern.html): Publish-subscribe (pub/sub) is a messaging pattern where publishers emit events to a topic without knowing who receives them; subscribers... - [Push-Relabel Maximum Flow](https://unseel.com/cs/push-relabel-maximum-flow.html): Push-relabel computes maximum flow without augmenting paths: it floods the source with a preflow, then repeatedly pushes excess downhill ... - [Pushdown Automaton](https://unseel.com/cs/pushdown-automaton.html): A pushdown automaton is a finite-state machine augmented with a stack, giving it exactly the power to recognize context-free languages — ... - [Q-Learning](https://unseel.com/cs/q-learning.html): Q-learning is a model-free, off-policy reinforcement learning algorithm that learns the value of each action by bootstrapping its own est... - [Quadtree](https://unseel.com/cs/quadtree.html): A quadtree partitions 2D space by recursively splitting each region into four quadrants — northwest, northeast, southwest, southeast. It ... - [Quaternions for 3D Rotation](https://unseel.com/cs/quaternions-rotation.html): A quaternion is a four-component number (w, x, y, z) that encodes a 3D rotation as a point on the unit hypersphere, rotating vectors with... - [Queue](https://unseel.com/cs/queue.html): Animated queue showing enqueue and dequeue operations with elements flowing through in order. - [QUIC](https://unseel.com/cs/quic.html): QUIC is a transport protocol over UDP that bakes TLS 1.3 into the wire, multiplexes streams without TCP head-of-line blocking, and sets u... - [Quick Sort](https://unseel.com/cs/quick-sort.html): 3D visualization of quick sort. Pick a pivot element highlighted in gold, partition the array so smaller elements go left and larger go r... - [Quickselect](https://unseel.com/cs/quickselect.html): Quickselect finds the k-th smallest element in an unsorted array in O(n) expected time without sorting the whole array. It's quicksort's ... - [Quorum Consensus](https://unseel.com/cs/quorum-consensus.html): Quorum reads (R) plus quorum writes (W) where R + W > N guarantees overlap and last-write-wins consistency. Dynamo, Cassandra, Riak. Inte... - [R-Tree](https://unseel.com/cs/r-tree.html): An R-tree indexes spatial objects with nested minimum bounding rectangles. Queries prune subtrees whose MBR doesn't intersect. Branching ... - [Rabin-Karp String Search](https://unseel.com/cs/rabin-karp.html): Rabin-Karp finds a pattern inside a longer text by hashing a sliding window. A rolling hash updates in O(1) per shift, giving O(n+m) aver... - [Radix Sort](https://unseel.com/cs/radix-sort.html): Sort by digits — least significant first — bucketing each pass by one digit. Linear time O(nk) for k-digit numbers. Works because stable ... - [Raft Consensus](https://unseel.com/cs/raft.html): Raft is a consensus algorithm for replicated state machines that elects a single leader to serialize log entries across a cluster. It tol... - [RAID](https://unseel.com/cs/raid.html): RAID combines several disks into one logical volume for speed or fault tolerance using striping, mirroring, and distributed parity — trad... - [Random Forest](https://unseel.com/cs/random-forest.html): A random forest is an ensemble that averages hundreds of decorrelated decision trees — each grown on a bootstrap sample with a random sub... - [Rasterization](https://unseel.com/cs/rasterization.html): Rasterization projects 3D triangles onto the screen and fills the pixels they cover, deciding inside/outside with edge functions and dept... - [Rate Limiting (Token & Leaky Bucket)](https://unseel.com/cs/rate-limiting-algorithms.html): Rate limiting caps how fast clients can hit a service. Token bucket allows bursts up to a capacity, leaky bucket smooths traffic to a con... - [Ray Marching & Signed Distance Fields](https://unseel.com/cs/ray-marching-sdf.html): Ray marching renders implicit surfaces by stepping along each ray a distance read from a signed distance field, so the marcher never over... - [Ray Tracing](https://unseel.com/cs/ray-tracing.html): Ray tracing renders an image by shooting a ray from the camera through every pixel into the scene, finding the nearest surface hit, then ... - [RCU — Read-Copy-Update](https://unseel.com/cs/rcu.html): Read-Copy-Update lets readers run lock-free while one writer at a time atomically publishes new versions. Old versions are reclaimed afte... - [Read Repair](https://unseel.com/cs/read-repair.html): Read repair compares replica versions during a quorum read and pushes the latest to lagging replicas inline. Cheap eventual consistency f... - [Read-Copy-Update (RCU)](https://unseel.com/cs/read-copy-update.html): Read-Copy-Update (RCU) is a synchronization mechanism that lets readers run lock-free while a writer updates a private copy and atomicall... - [Read-Write Lock](https://unseel.com/cs/read-write-lock.html): A read-write lock (RWLock) is a synchronization primitive that allows concurrent shared (read) access by multiple threads while ensuring ... - [Recurrent Neural Network (LSTM)](https://unseel.com/cs/recurrent-neural-network.html): A recurrent neural network processes sequences one step at a time, carrying a hidden state forward so each output depends on the whole pa... - [Recursion](https://unseel.com/cs/recursion.html): 3D call stack frames stacking up for factorial(5), then unwinding as values flow back down on return. - [Recursive Descent Parser](https://unseel.com/cs/recursive-descent-parser.html): A recursive descent parser is a top-down LL parser written by hand — one mutually-recursive function per grammar nonterminal. Used in GCC... - [Red-Black Tree](https://unseel.com/cs/red-black-tree.html): A binary search tree where color rules and rotations enforce balance at every insert and delete. Height stays O(log n), used in Linux ker... - [Red-Black vs AVL Tree](https://unseel.com/cs/red-black-vs-avl.html): Red-black and AVL trees both guarantee O(log n) operations, but with different trade-offs. RB tolerates 2× height for cheaper inserts; AV... - [Reed-Solomon Code](https://unseel.com/cs/reed-solomon-code.html): Reed-Solomon is a block error-correcting code over a finite field GF(2^m). RS(255,223) appends 32 parity bytes to correct up to 16 byte e... - [Reference Counting](https://unseel.com/cs/reference-counting.html): Reference counting tracks how many references point to each object and frees it the instant the count hits zero — giving deterministic, i... - [Regex Matching](https://unseel.com/cs/regex-matching.html): A regex pattern compiles to a state machine. Walk the input through the NFA's states — reach an accept state and the match succeeds. The ... - [Register Allocation](https://unseel.com/cs/register-allocation.html): Register allocation maps a compiler's unlimited virtual registers to a CPU's fixed physical registers. Graph coloring (Chaitin) or linear... - [Reinforcement Learning from Human Feedback (RLHF)](https://unseel.com/cs/reinforcement-learning-from-human-feedback.html): RLHF aligns a language model to human preferences in three stages: supervised fine-tuning, training a reward model from pairwise preferen... - [Reservoir Sampling](https://unseel.com/cs/reservoir-sampling.html): Reservoir sampling picks k uniformly random items from a stream of unknown length in O(n) time and O(k) space. Each item has probability ... - [Residual Networks (ResNet)](https://unseel.com/cs/residual-networks.html): A residual network (ResNet) adds skip connections that let a layer learn a residual F(x) on top of its input x, so the output is F(x) + x... - [REST API](https://unseel.com/cs/rest-api.html): URLs are resources, HTTP methods are verbs. GET reads, POST creates, PUT replaces, PATCH modifies, DELETE removes. JSON carries the state... - [Retrieval-Augmented Generation (RAG)](https://unseel.com/cs/retrieval-augmented-generation.html): Retrieval-Augmented Generation (RAG) bolts a vector-search retriever onto a large language model so it answers from fetched documents ins... - [Retry with Exponential Backoff](https://unseel.com/cs/retry-exponential-backoff.html): Retry failed requests with exponentially increasing delays: 1s, 2s, 4s, 8s — plus random jitter to prevent synchronized retry storms. Use... - [Return-Oriented Programming (ROP)](https://unseel.com/cs/return-oriented-programming.html): Return-oriented programming (ROP) is a code-reuse exploit that chains short instruction sequences already in memory — each ending in 'ret... - [Reverse Proxies](https://unseel.com/cs/reverse-proxy.html): A reverse proxy is a server that sits in front of your backend servers, accepting client requests and forwarding them to one of several o... - [Ring Buffer](https://unseel.com/cs/ring-buffer.html): A ring buffer is a fixed-size circular array with head and tail pointers that wrap modulo capacity. Lock-free SPSC variants hit 100M ops/... - [ROC Curves & AUC](https://unseel.com/cs/roc-auc-curve.html): A ROC curve plots a classifier's true positive rate against its false positive rate as you sweep the decision threshold; the area under i... - [Rope (data structure)](https://unseel.com/cs/rope-data-structure.html): A rope is a balanced binary tree whose leaves hold string fragments. By storing characters in leaves and the cumulative length in interna... - [Rotary Position Embedding (RoPE)](https://unseel.com/cs/rotary-position-embedding.html): Rotary Position Embedding (RoPE) encodes a token's position by rotating its query and key vectors by an angle proportional to position, s... - [RSA Encryption](https://unseel.com/cs/rsa-encryption.html): RSA is the first widely-deployed public-key cryptosystem, invented by Ron Rivest, Adi Shamir, and Leonard Adleman at MIT in 1977. Pick tw... - [Saga Pattern](https://unseel.com/cs/saga-pattern.html): A saga is a sequence of local transactions across multiple services where each transaction has a corresponding compensating transaction t... - [seccomp Sandboxing](https://unseel.com/cs/seccomp-sandboxing.html): seccomp is a Linux kernel feature that confines a process to a whitelist of system calls, so a compromised program can't open files, spaw... - [Segment Tree](https://unseel.com/cs/segment-tree.html): A segment tree stores aggregate values (min, max, sum, gcd) of every contiguous range over an array, supporting range queries and point o... - [Selection Sort](https://unseel.com/cs/selection-sort.html): Selection sort repeatedly finds the minimum of the unsorted suffix and swaps it into place. It runs in O(n²) regardless of input, does on... - [Selective Repeat ARQ](https://unseel.com/cs/selective-repeat-arq.html): Selective Repeat ARQ is a sliding-window reliable-transfer protocol that retransmits only the individual packets actually lost, buffering... - [Serializability](https://unseel.com/cs/serializability.html): Serializability is the correctness criterion for concurrent transactions: a schedule is correct if its result is equivalent to running th... - [SHA-256 (Merkle-Damgard)](https://unseel.com/cs/sha-256.html): SHA-256 hashes any message to a fixed 256-bit digest by padding it, splitting it into 512-bit blocks, and chaining them through a one-way... - [Shamir's Secret Sharing](https://unseel.com/cs/shamir-secret-sharing.html): Shamir's Secret Sharing splits a secret into n shares using a random degree-(k−1) polynomial over a finite field, so any k shares reconst... - [Side-Channel Attacks](https://unseel.com/cs/side-channel-attack.html): A side-channel attack recovers secrets not by breaking the math but by measuring the physical side effects of running it — timing, power ... - [SIMD](https://unseel.com/cs/simd.html): SIMD packs many values into one register and applies one instruction to all of them — 4× to 16× speedup for data-parallel loops. SSE, AVX... - [Simulated Annealing](https://unseel.com/cs/simulated-annealing.html): Simulated annealing is a probabilistic optimization method that escapes local minima by occasionally accepting worse moves. Borrowed from... - [Skip List](https://unseel.com/cs/skip-list.html): A linked list with multiple randomized levels creating express lanes — O(log n) expected time with code simpler than a balanced tree. Use... - [Slab Allocator](https://unseel.com/cs/slab-allocator.html): A slab allocator pre-allocates contiguous slabs of identically-sized objects and serves alloc/free as O(1) pops from a free list. It was ... - [Sliding Window](https://unseel.com/cs/sliding-window.html): A window moves across the array one step at a time. Add entering element, remove leaving element — O(1) updates instead of recomputing. T... - [Sliding Window Protocol](https://unseel.com/cs/sliding-window-protocol.html): The sliding window protocol lets a sender transmit up to W unacknowledged frames at once, sliding the window forward as ACKs arrive, so a... - [Smallest Enclosing Circle (Welzl's Algorithm)](https://unseel.com/cs/smallest-enclosing-circle.html): The smallest enclosing circle is the unique minimum-radius circle that covers every point in a set; Welzl's randomized incremental algori... - [Snapshot Isolation](https://unseel.com/cs/snapshot-isolation.html): Snapshot isolation gives each transaction a frozen, consistent view of the database as of the moment it began, so readers never block wri... - [Snowflake ID](https://unseel.com/cs/snowflake-id.html): Snowflake IDs pack a 41-bit timestamp, 10-bit machine ID, and 12-bit sequence into a single 64-bit integer. Time-sortable, decentralized,... - [Softmax & Cross-Entropy](https://unseel.com/cs/softmax-cross-entropy.html): Softmax turns a vector of raw scores (logits) into a probability distribution; cross-entropy measures how far that distribution is from t... - [Sort-Merge Join](https://unseel.com/cs/sort-merge-join.html): Sort-merge join joins two tables by sorting both on the join key, then merging them in a single synchronized pass with two cursors — O(n ... - [Spanner & TrueTime](https://unseel.com/cs/spanner-truetime.html): Spanner is Google's globally distributed database that uses TrueTime — a GPS-and-atomic-clock API exposing time as a bounded interval [ea... - [Spanning Tree Protocol](https://unseel.com/cs/spanning-tree-protocol.html): The Spanning Tree Protocol (STP, IEEE 802.1D) is a Layer-2 algorithm where switches elect a root bridge and cooperatively block redundant... - [Sparse Table](https://unseel.com/cs/sparse-table.html): A sparse table is a data structure that answers idempotent range queries (min, max, gcd, bitwise-and, bitwise-or) in O(1) per query after... - [Spatial Hashing](https://unseel.com/cs/spatial-hashing.html): Spatial hashing buckets objects into a uniform grid by hashing each object's cell coordinates, so collision and neighbor queries only com... - [Spectre & Meltdown](https://unseel.com/cs/spectre-and-meltdown.html): Spectre and Meltdown are speculative-execution attacks: the CPU runs instructions it later discards, but the discarded work leaves a secr... - [Speculative Decoding](https://unseel.com/cs/speculative-decoding.html): Speculative decoding speeds up large-language-model inference by having a small draft model propose several tokens at once, then verifyin... - [Speculative Execution](https://unseel.com/cs/speculative-execution.html): Speculative execution lets a CPU run instructions past unresolved branches, throwing away the wrong path. It buys high IPC but leaks data... - [Spinlock](https://unseel.com/cs/spinlock.html): A spinlock is a mutual-exclusion primitive that, when contended, busy-waits in a tight loop ("spins") rather than putting the thread to s... - [Splay Tree](https://unseel.com/cs/splay-tree.html): A splay tree is a self-adjusting binary search tree that, after every access (search, insert, delete), "splays" the accessed node to the ... - [Splay Tree Amortized Analysis](https://unseel.com/cs/splay-amortized.html): Why splay trees hit amortized O(log n) per operation despite having zero balance invariants. The access lemma, the potential function Phi... - [Sqrt Decomposition](https://unseel.com/cs/sqrt-decomposition.html): Sqrt decomposition splits an array into √N blocks and stores aggregate-per-block. Updates are O(1), range queries are O(√N), and the code... - [SSA Form](https://unseel.com/cs/ssa-form.html): Static Single Assignment is a compiler IR where every variable is assigned exactly once. φ-functions merge values at control-flow joins. ... - [SSTable Format](https://unseel.com/cs/sstable-format.html): An SSTable (Sorted String Table) is an immutable on-disk file of sorted key-value pairs, split into compressed blocks, indexed by a spars... - [Stack](https://unseel.com/cs/stack.html): 3D animation showing push and pop operations on a stack, demonstrating the Last-In-First-Out principle. - [Stack Canaries](https://unseel.com/cs/stack-canaries.html): A stack canary is a secret value placed just before the saved return address; on a buffer overflow the canary is overwritten first, so th... - [Strassen's Matrix Multiplication](https://unseel.com/cs/strassen-matrix-multiplication.html): Strassen's algorithm multiplies two n×n matrices with seven recursive products instead of eight, dropping the cost from O(n³) to O(n^2.80... - [Strassen's Matrix Multiplication](https://unseel.com/cs/strassen-algorithm.html): Strassen's algorithm multiplies two n×n matrices using seven recursive multiplications per block instead of eight, dropping the schoolboo... - [Suffix Array](https://unseel.com/cs/suffix-array.html): A suffix array is the sorted list of every suffix of a string, stored as starting indices. Combined with an LCP array, it answers substri... - [Suffix Automaton](https://unseel.com/cs/suffix-automaton.html): A suffix automaton (SAM) of string s is the smallest deterministic finite automaton that recognizes every suffix (and therefore every sub... - [Suffix Tree (Ukkonen's Algorithm)](https://unseel.com/cs/suffix-tree.html): A suffix tree is a compressed trie of every suffix of a string, built in O(n) time by Ukkonen's algorithm, that answers "is P a substring... - [Superscalar Execution](https://unseel.com/cs/superscalar-execution.html): Superscalar execution issues multiple instructions per clock cycle to several parallel execution units on one core, exploiting instructio... - [Support Vector Machine (SVM)](https://unseel.com/cs/support-vector-machine.html): A support vector machine finds the maximum-margin hyperplane separating two classes, defined entirely by a handful of critical points cal... - [System Call](https://unseel.com/cs/system-call.html): A system call is a controlled jump from user-space code into the kernel — the only way an unprivileged process can do I/O, allocate memor... - [t-SNE](https://unseel.com/cs/t-sne.html): t-SNE embeds high-dimensional data into 2D or 3D by turning pairwise distances into neighbor probabilities and minimizing the KL divergen... - [Tarjan's Bridges](https://unseel.com/cs/tarjan-bridges.html): Tarjan's bridge algorithm finds every edge whose removal disconnects a graph — in a single O(V+E) DFS. Uses low-link values just like Tar... - [Tarjan's Strongly Connected Components](https://unseel.com/cs/tarjan-scc.html): Tarjan's algorithm finds all strongly connected components of a directed graph in a single DFS pass — O(V + E). It detects cycles in depe... - [TCP 3-Way Handshake](https://unseel.com/cs/tcp-handshake.html): Three packets set up a reliable TCP connection. Client SYN sends a starting sequence; server SYN-ACK responds with its own; client ACKs t... - [TCP BBR Congestion Control](https://unseel.com/cs/tcp-bbr-congestion-control.html): TCP BBR is a model-based congestion control algorithm that probes for the bottleneck bandwidth and minimum round-trip time directly, paci... - [TCP Congestion Control](https://unseel.com/cs/tcp-congestion-control.html): TCP congestion control decides how fast a sender pushes bytes onto a shared network. From Reno's loss-based AIMD to BBR's bandwidth-delay... - [The ABA Problem](https://unseel.com/cs/aba-problem.html): The ABA problem is a concurrency bug where a compare-and-swap succeeds because a value changed from A to B and back to A, so CAS can't te... - [The Bias-Variance Tradeoff](https://unseel.com/cs/bias-variance-tradeoff.html): The bias-variance tradeoff explains why too simple a model underfits and too complex a model overfits: expected test error splits into bi... - [The Chinese Remainder Theorem](https://unseel.com/cs/chinese-remainder-theorem.html): The Chinese Remainder Theorem says that if you know a number's remainders modulo several pairwise-coprime divisors, there is exactly one ... - [The EEVDF Scheduler](https://unseel.com/cs/eevdf-scheduler.html): EEVDF (Earliest Eligible Virtual Deadline First) is Linux's default CPU scheduler since kernel 6.6: it grants each task a fair time slice... - [The Hungarian Algorithm](https://unseel.com/cs/hungarian-algorithm.html): The Hungarian algorithm finds the minimum-cost perfect matching in a weighted bipartite graph — the optimal assignment of n workers to n ... - [The Kalman Filter](https://unseel.com/cs/kalman-filter.html): The Kalman filter is a recursive algorithm that fuses a noisy measurement with a motion model to estimate a hidden state in real time, op... - [The Master Theorem](https://unseel.com/cs/master-theorem.html): The Master Theorem solves divide-and-conquer recurrences of the form T(n) = a·T(n/b) + f(n) by comparing f(n) against n^(log_b a): three ... - [The Out-of-Memory Killer](https://unseel.com/cs/out-of-memory-killer.html): The Linux out-of-memory (OOM) killer is a kernel last resort that, when physical memory and swap are exhausted, scores every process by a... - [The PACELC Theorem](https://unseel.com/cs/pacelc-theorem.html): PACELC extends the CAP theorem: if there is a network Partition (P), a system trades Availability (A) for Consistency (C); Else (E), in n... - [The Sieve of Eratosthenes](https://unseel.com/cs/sieve-of-eratosthenes.html): The Sieve of Eratosthenes finds every prime up to N by repeatedly crossing out the multiples of each prime it discovers, running in O(n l... - [The Simplex Algorithm](https://unseel.com/cs/simplex-algorithm.html): The simplex algorithm solves a linear program by walking from vertex to vertex along the edges of the feasible polytope, pivoting toward ... - [The TLS Handshake](https://unseel.com/cs/tls-handshake.html): The TLS handshake is the negotiation a browser and server run before any encrypted byte flows: they pick a cipher, exchange an ephemeral ... - [The Translation Lookaside Buffer (TLB)](https://unseel.com/cs/translation-lookaside-buffer.html): The translation lookaside buffer (TLB) is a small, fast cache of recent virtual-to-physical page translations that lets the CPU skip a mu... - [The Vanishing Gradient Problem](https://unseel.com/cs/vanishing-gradient-problem.html): The vanishing gradient problem is when backpropagated gradients shrink exponentially layer by layer, so early layers of a deep network ba... - [The Viterbi Algorithm](https://unseel.com/cs/viterbi-algorithm.html): The Viterbi algorithm is a dynamic-programming method that finds the single most likely sequence of hidden states in a hidden Markov mode... - [The WireGuard Protocol](https://unseel.com/cs/wireguard-protocol.html): WireGuard is a lean, fast VPN protocol — about 4,000 lines of kernel code — built on a fixed modern crypto suite (Curve25519, ChaCha20-Po... - [The Y Combinator](https://unseel.com/cs/y-combinator.html): The Y combinator is a fixed-point combinator from lambda calculus that lets an anonymous function recurse without ever referring to itsel... - [Thread Pool](https://unseel.com/cs/thread-pool.html): A thread pool keeps a fixed set of worker threads alive and feeds them tasks from a shared queue. Avoids ~1 ms per-thread creation cost. ... - [Three-Phase Commit](https://unseel.com/cs/three-phase-commit.html): Three-phase commit (3PC) adds a pre-commit phase between the vote and the commit of two-phase commit, so a coordinator crash leaves a tim... - [TLB (Translation Lookaside Buffer)](https://unseel.com/cs/tlb-cache.html): The TLB is a CPU-level cache that stores recent virtual-address-to-physical-address translations. On every memory access, the CPU first c... - [TLB Shootdown](https://unseel.com/cs/tlb-shootdown.html): When one CPU modifies a page table entry, every other CPU holding stale TLB copies must flush. The IPI plus INVLPG round trip costs 1–10 ... - [TLS Handshake](https://unseel.com/cs/ssl-tls.html): ClientHello, ServerHello + certificate, key exchange, session key derivation. Asymmetric crypto establishes a symmetric session key — the... - [Token Bucket Rate Limit](https://unseel.com/cs/token-bucket-rate-limit.html): Token bucket fills with tokens at rate r up to capacity b. Each request consumes one token; empty bucket → reject. Allows bursts up to b,... - [Topological Sort](https://unseel.com/cs/topological-sort.html): Order a directed acyclic graph so every edge points forward. Pick zero-indegree nodes, remove their edges, repeat. Detects cycles. Used i... - [Tortoise and Hare (Floyd's Cycle Detection)](https://unseel.com/cs/tortoise-and-hare.html): Floyd's tortoise-and-hare algorithm detects cycles in a sequence using two pointers — one moving 1 step at a time (tortoise), the other m... - [Transfer Learning](https://unseel.com/cs/transfer-learning.html): Transfer learning reuses a model pretrained on a giant dataset and adapts it to a new, smaller task by freezing the learned feature layer... - [Transformer Architecture](https://unseel.com/cs/transformer-architecture.html): The transformer architecture is the encoder-decoder neural network that powers modern LLMs: stacked blocks of multi-head self-attention a... - [Transformer Attention](https://unseel.com/cs/transformer-attention.html): Self-attention is the operation that powers transformers — including GPT, BERT, Llama, Claude — and replaced recurrent networ... - [Transparent Huge Pages](https://unseel.com/cs/transparent-huge-pages.html): Transparent Huge Pages (THP) is a Linux memory feature that automatically backs process memory with 2MB pages instead of 4KB, shrinking p... - [Treap](https://unseel.com/cs/treap.html): A treap is a binary search tree where each node has both a key (BST-ordered) and a randomly assigned priority (heap-ordered). The combine... - [Tri-Color Marking](https://unseel.com/cs/tri-color-marking.html): Tri-color marking is a garbage-collection technique that partitions the heap into white, gray, and black objects so a collector can trace... - [Trie](https://unseel.com/cs/trie.html): A tree that indexes strings by their shared prefixes. Insert and lookup time depend only on word length, not dictionary size. Powers auto... - [Turing Machine](https://unseel.com/cs/turing-machine.html): A tape, a head, a state, a transition table. Alan Turing's 1936 model captures everything a computer can compute — and proves there are p... - [Two Pointers](https://unseel.com/cs/two-pointers.html): Two indices move through a sorted array toward each other based on the current pair's relation to a target. Linear time for problems that... - [Two-Phase Commit (2PC)](https://unseel.com/cs/two-phase-commit.html): Two-phase commit (2PC) is a distributed consensus protocol that achieves atomic commit across multiple participants — either all of them ... - [Two-Phase Locking](https://unseel.com/cs/two-phase-locking.html): Two-phase locking (2PL) is a concurrency-control protocol that guarantees serializable transactions by splitting every transaction into a... - [UDP — User Datagram Protocol](https://unseel.com/cs/udp.html): UDP is a connectionless transport protocol that sends best-effort datagrams with an 8-byte header and no handshake. It powers DNS, video,... - [UMAP](https://unseel.com/cs/umap-dimensionality-reduction.html): UMAP projects high-dimensional data to 2D or 3D by building a fuzzy topological graph of each point's nearest neighbors and then laying t... - [Union-Find](https://unseel.com/cs/union-find.html): Tracks groupings via an up-tree forest. Union merges sets; find returns the root. With path compression and union-by-rank, both are almos... - [UTF-8 Encoding](https://unseel.com/cs/utf8-encoding.html): UTF-8 encodes any Unicode character in 1 to 4 bytes — ASCII is unchanged (1 byte), Latin and Greek take 2, most CJK takes 3, emoji and ra... - [Van Emde Boas Tree](https://unseel.com/cs/van-emde-boas-tree.html): A van Emde Boas (vEB) tree is a tree-based data structure that stores n integers from a universe of size U and supports membership, inser... - [Variational Autoencoder (VAE)](https://unseel.com/cs/variational-autoencoder.html): A variational autoencoder (VAE) is a generative neural network that encodes data into a probability distribution over a continuous latent... - [Vector Clocks](https://unseel.com/cs/vector-clocks.html): Vector clocks are per-process counter arrays that capture happens-before relationships in a distributed system. They tell you which event... - [Vector Search (HNSW)](https://unseel.com/cs/vector-search-hnsw.html): HNSW (Hierarchical Navigable Small World) is a graph index for approximate nearest-neighbor search over embeddings, layering long-range s... - [Virtual Memory](https://unseel.com/cs/virtual-memory.html): Each process sees its own vast address space. A page table maps virtual pages to physical frames — or to disk when memory is tight. TLB c... - [Vision Transformers (ViT)](https://unseel.com/cs/vision-transformer.html): A Vision Transformer (ViT) splits an image into fixed-size patches, linearly embeds each patch as a token, and feeds the sequence through... - [Voronoi Diagram (Fortune's Algorithm)](https://unseel.com/cs/voronoi-fortune.html): Fortune's algorithm builds a Voronoi diagram in O(n log n) by sweeping a line down the plane and tracking a beach line of parabolic arcs,... - [Wavelet Tree](https://unseel.com/cs/wavelet-tree.html): A wavelet tree is a succinct data structure for sequences over an alphabet of size σ, supporting rank, select, and access queries in O(lo... - [WebAuthn & Passkeys](https://unseel.com/cs/webauthn-passkeys.html): WebAuthn and passkeys replace passwords with a public-key credential bound to your device and unlocked by a biometric: the private key ne... - [WebRTC & NAT Traversal](https://unseel.com/cs/webrtc.html): WebRTC lets two browsers exchange audio, video, and data peer-to-peer with no media server, using ICE to test candidate paths, STUN to di... - [WebSocket](https://unseel.com/cs/websocket.html): Upgrade an HTTP connection into a full-duplex channel. Server can push anytime, client can send anytime. Chat, multiplayer games, live da... - [WebSockets](https://unseel.com/cs/websockets.html): WebSockets upgrade a single HTTP connection into a persistent, full-duplex channel: after one Upgrade handshake, client and server exchan... - [Weight Initialization (Xavier & He)](https://unseel.com/cs/weight-initialization.html): Weight initialization sets a neural network's starting weights so signal variance stays roughly 1 as it flows through layers; Xavier scal... - [Word Embeddings (word2vec)](https://unseel.com/cs/word-embeddings.html): Word embeddings map every word to a dense vector — typically 100 to 300 dimensions — so that words with similar meanings sit close togeth... - [Work Stealing](https://unseel.com/cs/work-stealing.html): Work stealing is a scheduler discipline where idle workers steal tasks from busy workers' deques. Provably near-optimal load balance. Use... - [Write-Ahead Log (WAL)](https://unseel.com/cs/write-ahead-log.html): A write-ahead log records every change a database is about to make to durable storage before that change is applied to data files. It's t... - [Write-Ahead Logging (WAL)](https://unseel.com/cs/write-ahead-logging.html): Write-ahead logging (WAL) is a durability protocol that forces a log record describing a change to durable storage before the changed dat... - [Write-Combining](https://unseel.com/cs/write-combining.html): Write-combining buffers coalesce multiple CPU stores to the same cache line into one transaction. The user-visible WC memory type acceler... - [Z-Algorithm](https://unseel.com/cs/z-algorithm.html): The Z-algorithm computes the Z-array Z[i] of a string s — defined as the length of the longest substring starting at position i that matc... - [Z-Buffer (Depth Buffer)](https://unseel.com/cs/z-buffer.html): A z-buffer is a per-pixel depth array that solves hidden-surface removal: as each triangle is rasterized, a fragment is drawn only if its... - [Zero-Copy I/O](https://unseel.com/cs/zero-copy.html): Zero-copy I/O moves bytes between file descriptors without copying them through user-space buffers. Calls like sendfile, splice and io_ur... - [Zero-Knowledge Proofs](https://unseel.com/cs/zero-knowledge-proof.html): A zero-knowledge proof (ZKP) is a cryptographic protocol where a prover convinces a verifier that a statement is true without revealing a... - [zk-SNARKs](https://unseel.com/cs/zk-snark.html): A zk-SNARK lets you prove you ran a computation on a secret input — and got a claimed output — in a constant-size proof (≈200 bytes for G... - [Zone Allocator](https://unseel.com/cs/zone-allocator.html): A zone allocator partitions physical memory into fixed-purpose ranges — DMA-reachable, normal, and high — each holding its own free-page ... ## Mathematics Algebra, calculus, topology, number theory, and mathematical concepts. 270 concepts. - [Mathematics index](https://unseel.com/mathematics.html): All mathematics concepts - [AM-GM Inequality](https://unseel.com/mathematics/am-gm-inequality.html): AM-GM inequality: (x₁ + … + xₙ)/n ≥ (x₁·…·xₙ)^(1/n) for non-negative reals. Equality iff all xᵢ are equal. Foundation of convex optimizat... - [Analytic Continuation](https://unseel.com/mathematics/analytic-continuation.html): Analytic continuation is the process of extending the domain of an analytic function f, originally defined on some open set U ⊂ ℂ, to a l... - [Arnoldi Iteration](https://unseel.com/mathematics/arnoldi-iteration.html): Arnoldi iteration builds an orthonormal basis Q of the Krylov subspace span{v, Av, A²v, ...} via modified Gram–Schmidt, producing an uppe... - [Axiom of Choice](https://unseel.com/mathematics/axiom-of-choice.html): The axiom of choice (AC) states that for every collection of non-empty sets there exists a function picking one element from each set. Th... - [Baire Category Theorem](https://unseel.com/mathematics/baire-category-theorem.html): The Baire category theorem says a complete metric space cannot be written as a countable union of nowhere-dense sets. It powers the open ... - [Banach Fixed-Point Theorem](https://unseel.com/mathematics/banach-fixed-point.html): The Banach fixed-point theorem: every contraction T: X → X with |T(x) − T(y)| ≤ k|x − y| (k < 1) on a complete metric space has a unique ... - [Banach Space](https://unseel.com/mathematics/banach-space.html): A Banach space is a vector space V (over ℝ or ℂ) with a norm ‖·‖ such that V is complete with respect to the metric d(x, y) = ‖x − y‖ — e... - [Bayes' Theorem](https://unseel.com/mathematics/bayes-theorem.html): Update beliefs when new evidence arrives. A positive medical test on a rare disease gives a surprisingly low probability of actual diseas... - [Bessel Functions](https://unseel.com/mathematics/bessel-functions.html): Bessel functions J_n and Y_n solve x²y'' + xy' + (x² − n²)y = 0. They describe vibrating drumhead modes, cylindrical waveguides, and FM r... - [Beta Distribution](https://unseel.com/mathematics/beta-distribution.html): The Beta distribution Beta(α, β) on [0, 1] is the conjugate prior for Bernoulli/binomial proportions. α and β act as pseudo-counts of pri... - [Binomial Distribution](https://unseel.com/mathematics/binomial-distribution.html): The Binomial distribution counts the number of successes in n independent trials, each with the same probability p of success. Coin flips... - [Bisection Method](https://unseel.com/mathematics/bisection-method.html): The bisection method finds a root of f(x) = 0 by repeatedly halving an interval [a,b] where f changes sign. Each iteration shrinks the br... - [Bolzano-Weierstrass Theorem](https://unseel.com/mathematics/bolzano-weierstrass.html): The Bolzano-Weierstrass theorem states: every bounded sequence in ℝⁿ has a convergent subsequence. Proven independently by Bernard Bolzan... - [Brouwer Fixed-Point Theorem](https://unseel.com/mathematics/brouwer-fixed-point.html): Brouwer's fixed-point theorem: every continuous function f from the closed n-dimensional ball D^n to itself has at least one fixed point ... - [Brownian Motion](https://unseel.com/mathematics/brownian-motion.html): Brownian motion (Wiener process) is a continuous-time stochastic process (B(t))t≥0 satisfying: (1) B(0) = 0, (2) increments B(t) − B(s) ~... - [Burnside's Lemma](https://unseel.com/mathematics/burnside-lemma.html): Burnside's lemma (sometimes "Cauchy-Frobenius"; Burnside's 1897 book popularized it but Cauchy proved it earlier and Frobenius generalize... - [Cantor's Diagonalization](https://unseel.com/mathematics/cantor-diagonalization.html): In 1891 Georg Cantor showed there are more real numbers than natural numbers using a single trick: assume the reals are listable, walk do... - [Cardinality of Infinite Sets](https://unseel.com/mathematics/cardinality-infinity.html): Two sets have the same cardinality when there is a bijection between them. Cantor (1874-1891) discovered that this seemingly modest defin... - [Catalan Numbers](https://unseel.com/mathematics/catalan-numbers.html): The Catalan numbers 1, 1, 2, 5, 14, 42, 132, 429 form one of the most ubiquitous sequences in combinatorics. The same formula counts bala... - [Cauchy Integral Formula](https://unseel.com/mathematics/cauchy-integral-formula.html): The Cauchy Integral Formula: if f is holomorphic on a simply connected domain D and γ is a positively oriented simple closed contour in D... - [Cauchy Sequence](https://unseel.com/mathematics/cauchy-sequence.html): A Cauchy sequence is one whose terms grow arbitrarily close together: for every ε > 0, there exists N such that |aₘ − aₙ| < ε for a... - [Cauchy-Riemann Equations](https://unseel.com/mathematics/cauchy-riemann-equations.html): A complex function f(x + iy) = u(x, y) + iv(x, y) is holomorphic at a point iff its real and imaginary parts u, v satisfy the Cauchy-Riem... - [Cauchy-Schwarz Inequality](https://unseel.com/mathematics/cauchy-schwarz-inequality.html): The Cauchy-Schwarz inequality says the absolute inner product of two vectors is at most the product of their norms. It holds in every inn... - [Cayley-Hamilton Theorem](https://unseel.com/mathematics/cayley-hamilton-theorem.html): The Cayley-Hamilton theorem states: if A is an n×n matrix over a commutative ring and p_A(λ) = det(λI − A) is its characteristic polynomi... - [Central Limit Theorem](https://unseel.com/mathematics/central-limit-theorem.html): Averages of any distribution converge to a normal distribution as sample size grows. Why the bell curve appears everywhere — and statisti... - [Chain Rule](https://unseel.com/mathematics/chain-rule.html): When functions are nested, the derivative is the product of outer and inner derivatives. The foundation of backpropagation in neural netw... - [Chebyshev Polynomials](https://unseel.com/mathematics/chebyshev-polynomials.html): Chebyshev polynomials T_n satisfy T_n(cos θ) = cos(nθ). They equioscillate between ±1 and give the minimax-optimal polynomial approximati... - [Chebyshev's Inequality](https://unseel.com/mathematics/chebyshev-inequality.html): Chebyshev's inequality: P(|X − μ| ≥ kσ) ≤ 1/k². The tightest distribution-free bound on tail probability — at most 25% of any distributio... - [Chi-Squared Distribution](https://unseel.com/mathematics/chi-squared-distribution.html): The chi-squared distribution χ²(k): the sum of k independent squared standard-normal random variables. Mean k, variance 2k. Backbone of g... - [Chinese Remainder Theorem](https://unseel.com/mathematics/chinese-remainder-theorem.html): When you know a number's remainder under several pairwise-coprime moduli, the Chinese Remainder Theorem reconstructs the number uniquely ... - [Cholesky Decomposition](https://unseel.com/mathematics/cholesky-decomposition.html): A symmetric positive-definite matrix A factors uniquely as A = LL^T where L is lower triangular. Twice as fast as LU, half the memory, no... - [Cohomology](https://unseel.com/mathematics/cohomology.html): Cohomology Hⁿ(X) is the dual of homology, defined via cochains and coboundaries δⁿ. It measures n-dimensional holes but with an extra cup... - [Compact Set](https://unseel.com/mathematics/compact-set.html): A subset K of a topological space is compact if every collection of open sets that covers K has a finite subcollection that still covers ... - [Compactification](https://unseel.com/mathematics/compactification.html): A compactification of a topological space X is a compact space X̃ along with an embedding X ↪ X̃ as a dense subspace. Three canonical con... - [Completing the Square](https://unseel.com/mathematics/completing-the-square.html): A geometric trick turning any quadratic into a perfect square plus a constant. Derives the quadratic formula and powers conic-section ana... - [Complex Numbers](https://unseel.com/mathematics/complex-numbers.html): A complex number a+bi pairs a real part with an imaginary part along an orthogonal axis. The Argand plane turns arithmetic into geometry ... - [Complex Plane Arithmetic](https://unseel.com/mathematics/complex-plane-arithmetic.html): Arithmetic on the complex plane is geometry in disguise. Addition is vector translation, multiplication is rotation-and-scaling, conjugat... - [Conditional Expectation](https://unseel.com/mathematics/conditional-expectation.html): E[X|Y] is the expected value of X given knowledge of Y — itself a random variable, a function of Y. Tower property: E[E[X|Y]] = E[X]. Fou... - [Conformal Mapping](https://unseel.com/mathematics/conformal-mapping.html): A conformal mapping is a function f: U → ℂ (U ⊂ ℂ open) that preserves angles at every point — equivalently, f is holomorphic with f'(z) ... - [Conic Sections](https://unseel.com/mathematics/conic-sections.html): Slice a double cone with a plane at different angles to produce four curves. Horizontal cut → circle. Tilted cut → ellipse. Cut parallel ... - [Conjugate Gradient](https://unseel.com/mathematics/conjugate-gradient.html): The conjugate gradient (CG) method solves Ax = b for symmetric positive-definite A by walking a sequence of search directions that are A-... - [Connectedness](https://unseel.com/mathematics/connectedness.html): A topological space is connected if it can't be split into two disjoint open sets. Path-connected: any two points are joined by a continu... - [Continued Fractions](https://unseel.com/mathematics/continued-fractions.html): A continued fraction expresses a real number as a tower of nested reciprocals: x = a₀ + 1/(a₁ + 1/(a₂ + …)). Truncating gives a sequence ... - [Continuity (ε-δ Definition)](https://unseel.com/mathematics/continuity-epsilon-delta.html): The ε-δ definition of continuity says a function f is continuous at a point c if for every tolerance ε > 0, there exists a closeness δ > ... - [Continuum Hypothesis (CH)](https://unseel.com/mathematics/continuum-hypothesis.html): The Continuum Hypothesis (CH), posed by Georg Cantor in 1878, asserts that there is no set whose cardinality lies strictly between that o... - [Convex Set and Convex Hull](https://unseel.com/mathematics/convex-set-hull.html): A convex set contains every line segment between its members. The convex hull of a finite point set is the smallest convex set containing... - [Convolution Theorem](https://unseel.com/mathematics/convolution-theorem.html): The convolution theorem: the Fourier transform of a convolution is the pointwise product of Fourier transforms — F(f ∗ g) = F(f) · F(g). ... - [Cramer's Rule](https://unseel.com/mathematics/cramers-rule.html): Cramer's rule solves Ax = b for an invertible square matrix A by expressing each unknown as a ratio of determinants: xi = det(Ai) / det(A... - [Cross Product](https://unseel.com/mathematics/cross-product.html): The cross product takes two vectors in three-dimensional space and returns a third vector perpendicular to both, with magnitude equal to ... - [Cross-Entropy](https://unseel.com/mathematics/cross-entropy.html): Cross-entropy H(P, Q) = −Σ P(x) log Q(x) is the average bits used to code samples from P with a code optimized for Q. Equal to entropy pl... - [Cross-Ratio](https://unseel.com/mathematics/cross-ratio.html): The cross-ratio of four collinear points A, B, C, D (or four concurrent lines) is the value (A, B; C, D) = ((C−A)(D−B))/((C−B)(D−A)) — th... - [Curl (Vector Calculus)](https://unseel.com/mathematics/curl.html): Curl is the vector operator ∇×F that measures the local rotation of a vector field. At each point it tells you the axis and rate of swirl... - [Cylindrical Coordinates](https://unseel.com/mathematics/cylindrical-coordinates.html): Cylindrical coordinates (r, θ, z) extend polar coordinates by adding a vertical z axis: r is the perpendicular distance from the z-axis, ... - [De Moivre's Theorem](https://unseel.com/mathematics/de-moivre.html): De Moivre's theorem says (cos θ + i sin θ)^n = cos(nθ) + i sin(nθ). It turns powers of complex numbers into a single rotation, derives mu... - [Derivative Definition](https://unseel.com/mathematics/derivative-definition.html): As h → 0, the secant line through two points rotates into the tangent line. Its slope is the derivative — instantaneous rate of change. C... - [Determinant](https://unseel.com/mathematics/determinant.html): |det(A)| is the scale factor for area (2D) or volume (3D) under the matrix transform. Sign tells orientation. Zero means the transform co... - [Differential Equations (Overview)](https://unseel.com/mathematics/differential-equations.html): A differential equation is an equation involving an unknown function and its derivatives. Solving one means finding the function. ODEs in... - [Differential Forms](https://unseel.com/mathematics/differential-forms.html): Differential forms are antisymmetric covariant tensors — the integrands of higher-dimensional calculus. The wedge product, exterior deriv... - [Dirac Delta Function](https://unseel.com/mathematics/dirac-delta.html): The Dirac delta δ(x) is an idealised impulse — zero everywhere except a single point, with total integral one. Strictly it is a distribut... - [Directional Derivative](https://unseel.com/mathematics/directional-derivative.html): The directional derivative D_v(f) of a multivariable function f at a point gives the rate of change of f as you move in the direction of ... - [Dirichlet Distribution](https://unseel.com/mathematics/dirichlet-distribution.html): The Dirichlet distribution Dir(α₁, …, α_k) is the multivariate Beta — a distribution over probability vectors (p₁, …, p_k) summing to 1. ... - [Dirichlet Series](https://unseel.com/mathematics/dirichlet-series.html): A Dirichlet series is an infinite series of the form Σ_{n=1}^∞ aₙ/n^s, where {aₙ} is a sequence of complex numbers and s is a complex var... - [Divergence (Vector Calculus)](https://unseel.com/mathematics/divergence.html): The divergence of a vector field F = (F_x, F_y, F_z) is the scalar field ∇·F = ∂F_x/∂x + ∂F_y/∂y + ∂F_z/∂z. Geometrically, it is the limi... - [Divergence Theorem (Gauss)](https://unseel.com/mathematics/divergence-theorem.html): The divergence theorem says outward flux through a closed surface equals the integral of divergence over the enclosed volume: ∯_∂V F·dS =... - [Dominated Convergence Theorem](https://unseel.com/mathematics/dominated-convergence.html): If fₙ → f pointwise and |fₙ| ≤ g with ∫g < ∞, then ∫fₙ → ∫f. Lebesgue's dominated convergence theorem justifies swapping limit and integr... - [Dot Product](https://unseel.com/mathematics/dot-product.html): The dot product takes two vectors and returns a single number that measures how much they point in the same direction. For vectors a and ... - [Dual Space](https://unseel.com/mathematics/dual-space.html): The dual space V* of a vector space V over a field F is the set of all linear functionals — linear maps V → F. V* is itself a vector spac... - [Eigenvalues & Eigenvectors](https://unseel.com/mathematics/eigenvalues.html): Eigenvectors are the directions a matrix stretches without rotating. Their scaling factors are eigenvalues. PageRank, PCA, quantum mechan... - [Eisenstein's Criterion](https://unseel.com/mathematics/eisenstein-criterion.html): Eisenstein's criterion (Gotthold Eisenstein, 1850) is a sufficient condition for a polynomial in ℤ[x] to be irreducible over ℚ. For f(x) ... - [Ergodic Theorem](https://unseel.com/mathematics/ergodic-theorem.html): The ergodic theorem says that for an ergodic process, the time average of a function equals its space average — integrating against the s... - [Euler Characteristic](https://unseel.com/mathematics/euler-characteristic.html): The Euler characteristic χ(X) is the alternating sum of cell counts in any CW-decomposition of a space X: χ = c₀ − c₁ + c₂ − …, where cₖ ... - [Euler's Identity](https://unseel.com/mathematics/eulers-identity.html): Euler's identity e^(iπ) + 1 = 0 links five fundamental constants in one equation. Show the complex plane with the unit circle, Euler's fo... - [Euler's Totient Function](https://unseel.com/mathematics/eulers-totient.html): Euler's totient function φ(n) counts how many positive integers up to n share no common factor with n. The closed form φ(n) = n × ∏(1 − 1... - [Expected Value](https://unseel.com/mathematics/expected-value.html): The long-run average of a random variable — weighted sum over outcomes and probabilities. Drives gambling, insurance, investment, and sta... - [Exponential Growth](https://unseel.com/mathematics/exponential-growth.html): Constant doubling time makes exponential growth explode after seeming slow. Compound interest, pandemics, Moore's Law all follow this pat... - [Fast Fourier Transform](https://unseel.com/mathematics/fast-fourier-transform.html): The Fast Fourier Transform computes the discrete Fourier transform of an N-sample signal in O(N log N) operations instead of the naïve O(... - [Fermat's Last Theorem](https://unseel.com/mathematics/fermats-last-theorem.html): No positive integers a, b, c satisfy aⁿ+bⁿ=cⁿ for n > 2. Stated 1637 by Fermat in a margin; proved 357 years later by Andrew Wiles in 199... - [Fermat's Little Theorem](https://unseel.com/mathematics/fermats-little-theorem.html): For any prime p and integer a coprime to p, raising a to the (p − 1) power leaves a remainder of 1 modulo p. The 1640 identity is the fou... - [Fibonacci Sequence](https://unseel.com/mathematics/fibonacci-sequence.html): The Fibonacci sequence visualized — watch 1, 1, 2, 3, 5, 8, 13, 21 build into the golden spiral. See how the ratio converges to phi (1.618). - [Field Extension](https://unseel.com/mathematics/field-extension.html): A field extension L/K is an inclusion K ⊆ L of fields. L becomes a vector space over K, with degree [L:K] = dim_K L (the dimension as a K... - [Finite Difference Method](https://unseel.com/mathematics/finite-difference-method.html): The finite difference method approximates derivatives by differences of function values on a grid. Forward difference (f(x+h)−f(x))/h is ... - [Finite Element Method](https://unseel.com/mathematics/finite-element-method.html): The finite element method discretises a PDE domain into a mesh of elements (triangles or tetrahedra) and expresses the solution as a sum ... - [First-Order Differential Equations](https://unseel.com/mathematics/ode-first-order.html): A first-order ODE relates a function y(x) to its first derivative y'(x) but no higher. Five canonical types — separable, linear, exact, B... - [Fisher Information](https://unseel.com/mathematics/fisher-information.html): Fisher information I(θ) = E[(∂ log f / ∂θ)²] = −E[∂² log f / ∂θ²] measures how much data tell you about a parameter. Sets the Cramér-Rao ... - [Fixed-Point Iteration](https://unseel.com/mathematics/fixed-point-iteration.html): Fixed-point iteration solves x = g(x) by repeatedly applying x_{n+1} = g(x_n). Converges if |g'(x*)| < 1 (contraction) at the fixed point... - [Fourier Series](https://unseel.com/mathematics/fourier-series.html): Any periodic function can be built by adding sine and cosine waves of different frequencies. Show a square wave approximated by its first... - [Fubini's Theorem](https://unseel.com/mathematics/fubini-theorem.html): Fubini's theorem: if ∫|f| dxdy is finite, the double integral equals either iterated integral, and the order can be swapped. Counterexamp... - [Fundamental Group](https://unseel.com/mathematics/fundamental-group.html): The fundamental group of a topological space is the algebraic record of its loops: the set of inequivalent ways you can walk around in ci... - [Fundamental Theorem of Calculus](https://unseel.com/mathematics/fundamental-theorem-calculus.html): Area under a curve equals the antiderivative evaluated at endpoints: ∫ₐᵇ f(x) dx = F(b) − F(a). The theorem that unifies calculus. - [Galois Theory](https://unseel.com/mathematics/galois-theory.html): Galois theory translates polynomial equations into group theory. The roots of a polynomial are solvable in radicals exactly when the Galo... - [Gamma Distribution](https://unseel.com/mathematics/gamma-distribution.html): The Gamma distribution Gamma(α, β): waiting time for the α-th event in a Poisson process. Generalizes the exponential (α = 1) and reduces... - [Gamma Function](https://unseel.com/mathematics/gamma-function.html): The gamma function Γ(z) = ∫₀^∞ t^(z−1) e^(−t) dt extends factorial to all complex numbers (except non-positive integers). Γ(n) = (n−1)! f... - [Gauss Quadrature](https://unseel.com/mathematics/gauss-quadrature.html): Gauss quadrature approximates ∫f(x)w(x)dx by Σ w_i f(x_i) using roots of orthogonal polynomials. Exact for polynomials up to degree 2n − ... - [Gauss-Bonnet Theorem](https://unseel.com/mathematics/gauss-bonnet-theorem.html): The Gauss-Bonnet theorem is one of the most beautiful results in mathematics: for a compact 2-manifold M with (possibly empty) boundary, ... - [Gaussian Curvature](https://unseel.com/mathematics/gaussian-curvature.html): Gaussian curvature K = κ₁κ₂ is the product of the two principal curvatures of a surface. Gauss's Theorema Egregium (1827) says K is intri... - [Gaussian Elimination](https://unseel.com/mathematics/gaussian-elimination.html): Gaussian elimination reduces a system of linear equations to upper-triangular form by sweeping out variables column by column. With parti... - [GCD & Euclidean Algorithm](https://unseel.com/mathematics/gcd-euclidean.html): Euclid's 2300-year-old algorithm finds GCD by repeated remainders. Still the algorithm every modern cryptography library uses. A geometri... - [GMRES Method](https://unseel.com/mathematics/gmres-method.html): GMRES solves Ax = b for non-symmetric A by building a Krylov subspace via Arnoldi iteration, then choosing the iterate that minimises ‖b ... - [Gödel's Incompleteness Theorems](https://unseel.com/mathematics/godels-incompleteness.html): In 1931, twenty-five-year-old Kurt Gödel constructed a sentence in the language of arithmetic that effectively said "I am not provable" —... - [Golden Ratio](https://unseel.com/mathematics/golden-ratio.html): The golden ratio φ ≈ 1.618 appears when a line is divided so the whole-to-large ratio equals the large-to-small ratio. Show the golden re... - [Gradient](https://unseel.com/mathematics/multivariable-gradient.html): ∇f is a vector pointing uphill on a multivariable function. Gradient descent — negative gradient direction — is the optimization engine o... - [Gram-Schmidt Process](https://unseel.com/mathematics/gram-schmidt.html): The Gram-Schmidt process turns any linearly independent set of vectors into an orthonormal basis spanning the same subspace, by repeatedl... - [Graph Coloring](https://unseel.com/mathematics/graph-coloring.html): Color a map so no two adjacent regions share a color. The Four-Color Theorem: four colors always suffice. Proved by computer in 1976 — th... - [Green's Function](https://unseel.com/mathematics/green-function.html): A Green's function G(x, x′) is the response of a linear differential operator L to a unit point source: L G = δ(x − x′). For any source f... - [Green's Theorem](https://unseel.com/mathematics/greens-theorem.html): Green's theorem ties a line integral around a closed plane curve to a double integral over the region it encloses: ∮(P dx + Q dy) = ∬(∂Q/... - [Group Theory](https://unseel.com/mathematics/group-theory.html): A set with a composition operation that obeys closure, identity, inverse, associativity. Rubik's cube, triangle rotations, and even the S... - [Hahn-Banach Theorem](https://unseel.com/mathematics/hahn-banach.html): The Hahn-Banach theorem says every continuous linear functional on a subspace extends to the whole space without enlarging its norm. The ... - [Heat Equation](https://unseel.com/mathematics/heat-equation.html): The heat equation ∂u/∂t = α∇²u is the canonical linear parabolic PDE — it governs heat diffusion, Brownian motion, image blur, and chemic... - [Heine-Borel Theorem](https://unseel.com/mathematics/heine-borel-theorem.html): The Heine-Borel theorem: a subset K of ℝⁿ (with the standard Euclidean metric) is compact if and only if K is both closed and bounded. Co... - [Hermite Polynomials](https://unseel.com/mathematics/hermite-polynomials.html): Hermite polynomials H_n(x) are orthogonal on ℝ with weight e^{−x²}. They give the quantum harmonic oscillator's eigenstates ψ_n(x) ∝ H_n(... - [Hermitian Matrix](https://unseel.com/mathematics/hermitian-matrix.html): A Hermitian matrix equals its own conjugate transpose: A = A*. All eigenvalues are real, and eigenvectors of distinct eigenvalues are ort... - [Hilbert Space](https://unseel.com/mathematics/hilbert-space.html): A Hilbert space H is a vector space (over ℝ or ℂ) equipped with an inner product ⟨·, ·⟩ such that the induced norm ‖x‖ = √⟨x, x⟩ makes H ... - [Hölder's Inequality](https://unseel.com/mathematics/holder-inequality.html): Hölder's inequality: ∫|fg| ≤ (∫|f|^p)^(1/p) · (∫|g|^q)^(1/q) whenever 1/p + 1/q = 1. Generalizes Cauchy-Schwarz (p = q = 2). Foundation o... - [Homology Groups](https://unseel.com/mathematics/homology-groups.html): Homology groups Hₙ(X) are abelian groups associated to a topological space X that algebraically capture its n-dimensional "holes" — conne... - [Homotopy](https://unseel.com/mathematics/homotopy.html): A homotopy between continuous maps f, g : X → Y is a continuous H : X × [0,1] → Y with H(x, 0) = f(x), H(x, 1) = g(x). Homotopy is an equ... - [Hyperbolic Geometry](https://unseel.com/mathematics/hyperbolic-geometry.html): Hyperbolic geometry is the non-Euclidean geometry obtained by replacing Euclid's parallel postulate with: through any point not on a give... - [Hypergeometric Distribution](https://unseel.com/mathematics/hypergeometric-distribution.html): The hypergeometric distribution counts successes when sampling n items WITHOUT replacement from a finite population of N items containing... - [Hypothesis Testing](https://unseel.com/mathematics/hypothesis-testing.html): Collect data, compute a test statistic, calculate the p-value. If p < 0.05, reject the null hypothesis. The foundation of experimental sc... - [Ideals in Rings](https://unseel.com/mathematics/ideals-rings.html): An ideal of a ring R is a subset I ⊆ R such that I is closed under addition (a − b ∈ I whenever a, b ∈ I) and "absorbs" multiplication by... - [Inclusion-Exclusion Principle](https://unseel.com/mathematics/inclusion-exclusion.html): When you count a union of overlapping sets by adding their individual sizes, the overlaps get counted twice. The inclusion-exclusion prin... - [Inner Product Space](https://unseel.com/mathematics/inner-product-space.html): An inner product space is a vector space equipped with an inner product ⟨·,·⟩ — a bilinear (or sesquilinear), symmetric, positive-definit... - [Integration by Parts](https://unseel.com/mathematics/integration-by-parts.html): The product rule in reverse. Choose u and dv cleverly (LIATE order) to simplify the integral. Essential for products of functions — physi... - [Interior-Point Method](https://unseel.com/mathematics/interior-point-method.html): Interior-point methods add a logarithmic barrier to a constrained optimization problem, replacing inequality constraints with a penalty t... - [Intermediate Value Theorem](https://unseel.com/mathematics/intermediate-value-theorem.html): The Intermediate Value Theorem says that a continuous function on [a,b] takes every value between f(a) and f(b). It guarantees roots, fix... - [Inversive Geometry](https://unseel.com/mathematics/inversive-geometry.html): Inversion in a circle of center O and radius r is the map sending each point P (other than O) to the point P' on ray OP with OP · OP' = r... - [Jacobian Change of Variables](https://unseel.com/mathematics/jacobian-change-of-variables.html): The Jacobian determinant |J| measures how a coordinate transformation stretches local area (in 2D) or volume (in 3D). The change-of-varia... - [Jensen's Inequality](https://unseel.com/mathematics/jensen-inequality.html): Jensen's inequality says f(E[X]) ≤ E[f(X)] for any convex function f. The concave version flips the sign. It is the engine behind every p... - [Jordan Canonical Form](https://unseel.com/mathematics/jordan-canonical-form.html): The Jordan canonical form (JCF) is the unique (up to block ordering) representation of any square matrix A over an algebraically closed f... - [Karush-Kuhn-Tucker Conditions](https://unseel.com/mathematics/karush-kuhn-tucker.html): The KKT conditions characterise the optimum of an inequality-constrained nonlinear program: stationarity of the Lagrangian, primal feasib... - [Klein Bottle](https://unseel.com/mathematics/klein-bottle.html): The Klein bottle is the canonical non-orientable closed surface: a 2D world that wraps around so completely that the very notion of "insi... - [Kronecker Product](https://unseel.com/mathematics/kronecker-product.html): The Kronecker product A⊗B replaces every entry a_ij of A by the scaled block a_ij·B. An m×p matrix kron a n×q matrix gives an mn×pq matri... - [Kullback-Leibler Divergence](https://unseel.com/mathematics/kullback-leibler-divergence.html): KL divergence D(P‖Q) = Σ P(x) log(P(x)/Q(x)) measures how many extra bits you spend coding samples from P with a code optimized for Q. Ze... - [L'Hôpital's Rule](https://unseel.com/mathematics/lhopital-rule.html): L'Hôpital's rule evaluates indeterminate limits of the form 0/0 or ∞/∞ by replacing f(x)/g(x) with f′(x)/g′(x). The other indeterminate f... - [Lagrange Multipliers](https://unseel.com/mathematics/lagrange-multipliers.html): Find the max or min of f subject to constraint g = 0. At the optimum, gradients align: ∇f = λ∇g. Essential from economics to machine lear... - [Lanczos Algorithm](https://unseel.com/mathematics/lanczos-algorithm.html): The Lanczos algorithm is Arnoldi specialised to symmetric (or Hermitian) matrices. The Hessenberg projection collapses to a tridiagonal T... - [Laplace Equation](https://unseel.com/mathematics/laplace-equation.html): The Laplace equation ∇²φ = 0 governs every steady-state diffusion: equilibrium temperature, electrostatic potential in vacuum, gravity in... - [Laplace Transform](https://unseel.com/mathematics/laplace-transform.html): The Laplace transform converts a function of time t into a function of complex frequency s, turning differential equations into algebraic... - [Law of Cosines](https://unseel.com/mathematics/law-of-cosines.html): The Pythagorean theorem generalized to any triangle. When C = 90°, cos = 0 and the extra term vanishes. Non-right angles bend the formula... - [Law of Large Numbers](https://unseel.com/mathematics/law-of-large-numbers.html): The Law of Large Numbers (LLN) states that the sample average X̄ₙ = (X₁ + … + Xₙ)/n of i.i.d. random variables with finite mean μ converg... - [Lebesgue Integral](https://unseel.com/mathematics/lebesgue-integral.html): The Lebesgue integral, introduced by Henri Lebesgue in his 1902 PhD thesis, generalizes the Riemann integral by partitioning the function... - [Legendre Polynomials](https://unseel.com/mathematics/legendre-polynomials.html): Legendre polynomials P_n(x) are orthogonal polynomials on [−1, 1] with weight 1: ∫_{−1}^{1} P_n P_m dx = 0 for n ≠ m. P_n(cos θ) is the m... - [Legendre Symbol](https://unseel.com/mathematics/legendre-symbol.html): The Legendre symbol (a|p), introduced by Adrien-Marie Legendre in 1785, is defined for an odd prime p and any integer a as: +1 if a is a ... - [Limits (Formal Definition)](https://unseel.com/mathematics/limits-formal-definition.html): The formal ε-δ definition of a limit says limx→c f(x) = L if for every ε > 0 there exists δ > 0 such that 0 < |x − c| < δ implies |f(x) −... - [Line Integrals](https://unseel.com/mathematics/line-integrals.html): A line integral integrates a function along a curve. For scalar fields it sums values weighted by arc length; for vector fields it sums F... - [Linear Programming Duality](https://unseel.com/mathematics/linear-programming-duality.html): LP duality pairs every primal linear program with a dual LP whose variables are shadow prices on the primal's constraints. Weak duality s... - [Linear Transformations](https://unseel.com/mathematics/linear-transformations.html): Every linear transformation is represented by a matrix. Rotations, scalings, shears, reflections — all encoded as 2×2 or 3×3 matrices. Gr... - [Lipschitz Continuity](https://unseel.com/mathematics/lipschitz-continuity.html): A function f is Lipschitz continuous with constant L if |f(x) − f(y)| ≤ L|x − y| for all x, y. Bounded-slope condition — stronger than co... - [Logarithms](https://unseel.com/mathematics/logarithms.html): log asks 'what power gives this value?' log(ab) = log(a) + log(b) — multiplication becomes addition. Compresses wildly different scales: ... - [LU Decomposition](https://unseel.com/mathematics/lu-decomposition.html): LU decomposition writes a square matrix as A = L·U, the product of a lower-triangular L and an upper-triangular U. Once factored, every s... - [Lyapunov Stability](https://unseel.com/mathematics/lyapunov-stability.html): Lyapunov's direct method certifies stability of a fixed point without solving the ODE. Find V(x) with V(0) = 0, V > 0 elsewhere, and dV/d... - [Mandelbrot Set](https://unseel.com/mathematics/mandelbrot-set.html): The Mandelbrot set is the set of complex numbers c for which z_(n+1) = z_n² + c stays bounded when iterated from z_0 = 0. Points inside n... - [Manifold — Definition](https://unseel.com/mathematics/manifold-definition.html): A manifold is a topological space that locally looks like Euclidean R^n. Smooth manifolds add compatible C^∞ charts and transition maps. ... - [Markov Chain](https://unseel.com/mathematics/markov-chain.html): A memoryless random process — next state depends only on current. Converges to a steady-state distribution regardless of start. PageRank,... - [Markov's Inequality](https://unseel.com/mathematics/markov-inequality.html): Markov's inequality: for a non-negative random variable X with finite mean, P(X ≥ a) ≤ E[X]/a. The simplest concentration bound and the b... - [Martingale](https://unseel.com/mathematics/martingale.html): A martingale is a stochastic process (Xₙ) on a filtered probability space (Ω, F, (Fₙ), P) satisfying E[Xₙ₊₁ | F_n] = Xₙ — given the entir... - [Matrix Inverse](https://unseel.com/mathematics/matrix-inverse.html): The inverse of a square matrix A is the unique matrix A⁻¹ satisfying A·A⁻¹ = A⁻¹·A = I. It exists if and only if det A ≠ 0 (equivalently,... - [Matrix Multiplication](https://unseel.com/mathematics/matrix-multiplication.html): The (i,j) entry of AB is the dot product of row i of A and column j of B. Represents composition of linear transformations. Graphics, qua... - [Maximum Likelihood Estimation](https://unseel.com/mathematics/maximum-likelihood.html): You have data and a parametric model. Maximum likelihood estimation picks the single parameter value that makes your observed dataset the... - [Maxwell's Equations (Mathematical Form)](https://unseel.com/mathematics/maxwell-equations-math.html): Maxwell's four PDEs — ∇·E = ρ/ε₀, ∇·B = 0, ∇×E = −∂B/∂t, ∇×B = μ₀J + μ₀ε₀ ∂E/∂t — are the foundation of classical electromagnetism. In va... - [Mean Value Theorem](https://unseel.com/mathematics/mean-value-theorem.html): The Mean Value Theorem says that for a function continuous on [a,b] and differentiable on (a,b), there is a point c where the instantaneo... - [Metric Space](https://unseel.com/mathematics/metric-space.html): A metric space is a set X equipped with a distance function d : X × X → ℝ≥0 satisfying three axioms: identity (d = 0 only at equal points... - [Metropolis-Hastings Algorithm](https://unseel.com/mathematics/metropolis-hastings.html): Metropolis-Hastings is the workhorse MCMC algorithm: sample from any distribution proportional to a known function by proposing moves and... - [Miller-Rabin Primality Test](https://unseel.com/mathematics/miller-rabin.html): Miller-Rabin is a probabilistic primality test: for a composite n, a random base catches it with probability at least 3/4. Forty rounds c... - [Minkowski's Inequality](https://unseel.com/mathematics/minkowski-inequality.html): Minkowski's inequality: ‖f + g‖_p ≤ ‖f‖_p + ‖g‖_p for any 1 ≤ p ≤ ∞. The triangle inequality for L^p norms — what makes L^p a normed spac... - [Möbius Function](https://unseel.com/mathematics/mobius-function.html): The Möbius function μ(n), introduced by August Möbius in 1832, is defined for positive integers as: μ(1) = 1; μ(n) = (-1)^k if n is a pro... - [Möbius Strip](https://unseel.com/mathematics/mobius-strip.html): A rectangle joined with a half-twist has only one side and one edge. Cutting it lengthwise doesn't split it — it stays as one longer loop... - [Modular Arithmetic](https://unseel.com/mathematics/modular-arithmetic.html): Arithmetic that wraps around at n — like a clock. 7 + 8 ≡ 3 (mod 12). Powers RSA cryptography and explains calendars, music theory, and c... - [Moment-Generating Function](https://unseel.com/mathematics/moment-generating-function.html): The moment-generating function (MGF) of a random variable X is M_X(t) = E[e^(tX)] = Σ E[X^k] t^k / k!, when this expectation exists in so... - [Monty Hall Problem](https://unseel.com/mathematics/monty-hall.html): Three doors: behind one is a car, behind two are goats. You pick door 1. The host (who knows what's behind each door) opens door 3 to rev... - [Moore–Penrose Pseudoinverse](https://unseel.com/mathematics/moore-penrose-pseudoinverse.html): The Moore–Penrose pseudoinverse A⁺ generalises the inverse to non-square, rank-deficient matrices. The least-squares solution to Ax = b i... - [Multinomial Distribution](https://unseel.com/mathematics/multinomial-distribution.html): The multinomial distribution counts outcomes in n independent trials with k possible categories. PMF P(n₁, …, n_k) = n!/∏nᵢ! · ∏pᵢ^nᵢ. Ge... - [Mutual Information](https://unseel.com/mathematics/mutual-information.html): Mutual information I(X; Y) = H(X) − H(X|Y) = D_KL(p(x, y)‖p(x)p(y)) is the bits one random variable reveals about another. Zero iff indep... - [Newton-Raphson Method](https://unseel.com/mathematics/newton-raphson.html): The Newton-Raphson method solves f(x) = 0 by drawing the tangent line at the current guess and using its x-intercept as the next guess. N... - [Newton's Method (Optimization)](https://unseel.com/mathematics/newton-method-optimization.html): Newton's method for optimisation minimises a smooth function by fitting a local quadratic at each iterate and jumping to the minimum of t... - [Non-Euclidean Geometry](https://unseel.com/mathematics/non-euclidean-geometry.html): On flat space, triangle angles sum to 180°. On a sphere, more. On a saddle, less. Einstein's general relativity describes the universe as... - [Normal Distribution](https://unseel.com/mathematics/normal-distribution.html): The normal (Gaussian) distribution is the symmetric bell curve defined by mean μ and standard deviation σ. Show a Galton board where ball... - [Orthogonal Polynomials](https://unseel.com/mathematics/orthogonal-polynomials.html): Orthogonal polynomial families satisfy ∫ p_n(x) p_m(x) w(x) dx = 0 for n ≠ m. Legendre, Hermite, Chebyshev, Laguerre — the basis of spect... - [Orthogonal Projection](https://unseel.com/mathematics/orthogonal-projection.html): An orthogonal projection drops a vector perpendicularly onto a line, plane, or higher-dimensional subspace, returning the closest point i... - [Orthonormal Basis](https://unseel.com/mathematics/orthonormal-basis.html): An orthonormal basis is a set of mutually perpendicular unit vectors that span a vector space. Formally, {q₁, q₂, …, qₙ} satisfies qᵢ · q... - [p-adic Numbers](https://unseel.com/mathematics/p-adic-numbers.html): The p-adic numbers ℚₚ (for prime p) form an alternative completion of the rational numbers ℚ — one where two numbers are "close" if their... - [Parametric Curves](https://unseel.com/mathematics/parametric-curves.html): x and y each defined as functions of t trace out curves that can loop and cross themselves. Circle, cycloid, Lissajous — every trajectory... - [Parseval's Identity](https://unseel.com/mathematics/parseval-identity.html): Parseval's identity: ∫|f(t)|² dt = (1/2π) ∫|F(ω)|² dω. The Fourier transform is an isometry of L²(ℝ). Energy in the time domain equals en... - [Partial Derivatives](https://unseel.com/mathematics/partial-derivatives.html): A partial derivative ∂f/∂x of a multivariable function f(x, y, ...) is the rate of change of f with respect to x while every other variab... - [Partial Fractions Integration](https://unseel.com/mathematics/integration-partial-fractions.html): To integrate a rational function P(x)/Q(x), decompose it into a sum of simpler fractions — A/(x−a) terms for linear factors, (Bx+C)/(x²+b... - [Partition Function p(n)](https://unseel.com/mathematics/partition-function.html): The partition function p(n) counts the number of ways to write a positive integer n as an unordered sum of positive integers. p(0) = 1, p... - [Pascal's Triangle](https://unseel.com/mathematics/pascals-triangle.html): Pascal's triangle: each number is the sum of the two directly above it. Row n gives the binomial coefficients C(n,k) — the number of ways... - [Peano Axioms](https://unseel.com/mathematics/peano-axioms.html): The Peano axioms, formulated by Giuseppe Peano in 1889 (Arithmetices Principia), characterize the natural numbers ℕ from a single startin... - [Permutations & Combinations](https://unseel.com/mathematics/permutations-combinations.html): Permutations (ordered) count arrangements; combinations (unordered) count choices. P(n,r) = n!/(n−r)! and C(n,r) = P(n,r)/r!. Poker, lott... - [Pigeonhole Principle](https://unseel.com/mathematics/pigeonhole-principle.html): If you put n+1 items into n boxes, some box has ≥ 2 items. Trivial statement, deep consequences. In any group of 13, two share a birth mo... - [Poisson Distribution](https://unseel.com/mathematics/poisson-distribution.html): The Poisson distribution gives the probability of seeing exactly k events when events arrive independently at average rate λ in a fixed w... - [Poisson Equation](https://unseel.com/mathematics/poisson-equation.html): The Poisson equation ∇²φ = -ρ/ε₀ generalises Laplace by adding a source term. It governs electrostatic potential with charge density, gra... - [Polar Coordinates](https://unseel.com/mathematics/polar-coordinates.html): Polar coordinates locate a point by distance r from the origin and angle θ from the positive x-axis. Curves with rotational symmetry — ci... - [Polynomial Roots](https://unseel.com/mathematics/polynomial-roots.html): Every polynomial of degree n has exactly n roots when complex numbers are counted. Real roots live on the real axis; complex roots come i... - [Power Iteration](https://unseel.com/mathematics/power-iteration.html): Power iteration finds the dominant eigenvector of a matrix A by repeatedly multiplying a starting vector by A and renormalising. The iter... - [Power Series](https://unseel.com/mathematics/power-series.html): A power series is an infinite polynomial ∑ aₙ(x−a)ⁿ. Inside its disk of convergence it defines an analytic function that can be different... - [Prime Numbers](https://unseel.com/mathematics/prime-numbers.html): Prime numbers are integers greater than 1 divisible only by 1 and themselves. Show the Sieve of Eratosthenes on a 10×10 grid: remove 1, t... - [Principal Component Analysis](https://unseel.com/mathematics/principal-component-analysis.html): Principal component analysis finds the directions of greatest variance in a dataset by computing the eigenvectors of its covariance matri... - [Projective Geometry](https://unseel.com/mathematics/projective-geometry.html): Projective geometry extends Euclidean geometry by adding points at infinity (one for each direction in the plane), so that every pair of ... - [Proof by Induction](https://unseel.com/mathematics/induction-proof.html): Prove a statement for n = 1, then prove that if it holds for k it holds for k+1. Like dominoes falling, this proves the statement for eve... - [Pythagorean Theorem](https://unseel.com/mathematics/pythagorean-theorem.html): 3D visualization of the Pythagorean theorem with squares built on each side of a right triangle. - [QR Decomposition](https://unseel.com/mathematics/qr-decomposition.html): QR decomposition factors a matrix into an orthogonal Q and an upper-triangular R, exposing an orthonormal basis for the column space. It ... - [Quadratic Formula](https://unseel.com/mathematics/quadratic-formula.html): The closed-form solution to any quadratic. Discriminant b²-4ac determines the number of real roots: positive → two, zero → one, negative ... - [Quadratic Reciprocity](https://unseel.com/mathematics/quadratic-reciprocity.html): Quadratic reciprocity is one of the deepest theorems in elementary number theory. For distinct odd primes p and q, with the Legendre symb... - [Quasi-Newton (BFGS)](https://unseel.com/mathematics/quasi-newton-bfgs.html): BFGS (Broyden–Fletcher–Goldfarb–Shanno, 1970) builds an approximate inverse Hessian directly from gradient differences via a rank-2 updat... - [Quotient Group](https://unseel.com/mathematics/quotient-group.html): A quotient group G/N (read "G mod N") is constructed by partitioning a group G into cosets of a normal subgroup N (a subgroup invariant u... - [Radius of Convergence](https://unseel.com/mathematics/radius-of-convergence.html): The radius of convergence R of a power series ∑ aₙ(x−a)ⁿ is the half-width of the interval where the series converges absolutely. Compute... - [Ramsey Theory](https://unseel.com/mathematics/ramsey-theory.html): Ramsey theory is the branch of combinatorics that studies the conditions under which order must appear in sufficiently large structures. ... - [Random Matrix](https://unseel.com/mathematics/random-matrix.html): A random matrix has entries drawn from a probability distribution. The empirical eigenvalue density of a symmetric N×N random matrix with... - [Random Walk](https://unseel.com/mathematics/random-walk.html): A random walk is a path built from independent random steps. The simplest version moves +1 or −1 each second on a fair coin flip, but the... - [Rank–Nullity Theorem](https://unseel.com/mathematics/rank-nullity-theorem.html): For any linear map T : V → W, dim(ker T) + dim(im T) = dim V. For matrices, rank + nullity equals the number of columns. The conservation... - [Ratio Test](https://unseel.com/mathematics/ratio-test.html): The ratio test decides convergence of ∑ aₙ from the asymptotic ratio L = lim |a_{n+1}/aₙ|. If L < 1 the series converges absolutely; if L... - [Rational Functions](https://unseel.com/mathematics/rational-functions.html): f(x) = P(x)/Q(x). Vertical asymptotes where denominator is zero; horizontal asymptotes determined by degree comparison. Essential in filt... - [Related Rates](https://unseel.com/mathematics/related-rates.html): Differentiate a relationship with respect to time to link rates of related quantities. A balloon's volume rate ties to its radius rate vi... - [Residue Theorem](https://unseel.com/mathematics/residue-theorem.html): Cauchy's residue theorem says the integral of a meromorphic function around a closed contour is 2πi times the sum of the residues at the ... - [Riemann Hypothesis](https://unseel.com/mathematics/riemann-hypothesis.html): All non-trivial zeros of the Riemann zeta function lie on the critical line Re(s)=1/2. Conjectured by Riemann in 1859, verified for the f... - [Riemann Sum](https://unseel.com/mathematics/riemann-sum.html): A Riemann sum approximates the area under a curve by slicing it into rectangles. Show a smooth curve with 4 rectangles (rough fit), then ... - [Riemann Zeta Function](https://unseel.com/mathematics/riemann-zeta-function.html): The Riemann zeta function is defined for Re(s) > 1 by the Dirichlet series ζ(s) = Σₙ₌₁^∞ 1/n^s = 1 + 1/2^s + 1/3^s + …, and is extende... - [Riemannian Metric](https://unseel.com/mathematics/riemannian-metric.html): A Riemannian metric on a smooth manifold M is a smoothly-varying inner product g_p on each tangent space TₚM. In local coordinates, g is ... - [Ring Theory](https://unseel.com/mathematics/ring-theory.html): A ring is an algebraic structure (R, +, ×) where (R, +) is an abelian group, (R, ×) is a monoid (or semigroup, depending on convention), ... - [Roots of Unity](https://unseel.com/mathematics/complex-roots-of-unity.html): The n-th roots of unity are the n complex solutions to z^n = 1. They sit at the vertices of a regular n-gon inscribed in the unit circle,... - [Runge-Kutta Methods](https://unseel.com/mathematics/runge-kutta.html): Most differential equations describing the real world have no closed-form solution — you have to integrate them numerically. Runge-Kutta ... - [Russell's Paradox](https://unseel.com/mathematics/russells-paradox.html): Russell's Paradox, discovered by Bertrand Russell in 1901 (independently by Ernst Zermelo earlier), asks: consider R = {x : x ∉ x}, the s... - [Secant Method](https://unseel.com/mathematics/secant-method.html): The secant method finds a root of f(x) = 0 by repeatedly drawing the secant line through the last two iterates and taking its x-intercept... - [Second-Order Differential Equations](https://unseel.com/mathematics/ode-second-order.html): A second-order linear ODE has the form ay'' + by' + cy = f(x). The characteristic equation ar² + br + c = 0 splits into three cases — rea... - [Separation of Variables](https://unseel.com/mathematics/separation-of-variables.html): Solve a first-order ODE dy/dx = f(x)g(y) by moving y to one side and x to the other: ∫ dy/g(y) = ∫ f(x) dx. Works iff the right-hand side... - [Series Convergence Tests](https://unseel.com/mathematics/series-convergence-tests.html): A series ∑ aₙ converges when its partial sums approach a finite limit. Convergence tests — integral, comparison, ratio, root, alternating... - [Shannon Entropy](https://unseel.com/mathematics/entropy-shannon.html): Shannon entropy H(X) = −Σ p(x) log p(x) measures the average information content of a random variable. Maximum at uniform; zero at determ... - [Sherman–Morrison Formula](https://unseel.com/mathematics/sherman-morrison.html): Sherman–Morrison rewrites (A + uvᵀ)⁻¹ in terms of A⁻¹ as A⁻¹ − (A⁻¹uvᵀA⁻¹)/(1 + vᵀA⁻¹u). Updating an inverse after a rank-1 change costs ... - [Sieve of Eratosthenes](https://unseel.com/mathematics/sieve-of-eratosthenes.html): Find every prime up to N by striking out composites. For each prime p ≤ √N, cross out multiples 2p, 3p, .... Survivors are primes. O(N lo... - [Sigma-Algebra](https://unseel.com/mathematics/sigma-algebra.html): A sigma-algebra (σ-algebra) F on a set Ω is a collection of subsets of Ω satisfying: (1) Ω ∈ F, (2) if A ∈ F then Aᶜ ∈ F (closed under co... - [Simplex Method](https://unseel.com/mathematics/simplex-method.html): A linear program asks for the largest c·x over a region carved out by linear constraints. The simplex method walks the vertices of that r... - [Simpson's Rule](https://unseel.com/mathematics/simpson-rule.html): Simpson's rule approximates ∫f(x)dx via parabolas through 3 points: (h/3)(f(a) + 4f(c) + f(b)). Error O(h⁵·f⁽⁴⁾), fourth-order accurate. - [Singular Value Decomposition](https://unseel.com/mathematics/singular-value-decomposition.html): The singular value decomposition writes any matrix A as A = U·Σ·VT — an orthogonal rotation, a non-negative diagonal stretch, and another... - [Spectral Theorem](https://unseel.com/mathematics/spectral-theorem.html): The spectral theorem: every Hermitian matrix H ∈ ℂ^(n×n) (i.e. H = H*) has an orthonormal basis of eigenvectors with real eigenvalues — e... - [Spherical Coordinates](https://unseel.com/mathematics/spherical-coordinates.html): Spherical coordinates (ρ, θ, φ) describe a point in three-dimensional space by its distance from the origin, its azimuthal angle around t... - [Spherical Harmonics](https://unseel.com/mathematics/spherical-harmonics.html): Spherical harmonics Yₗᵐ(θ, φ) are the angular eigenfunctions of the Laplacian on the sphere — an orthonormal basis for square-integrable ... - [Squeeze Theorem](https://unseel.com/mathematics/squeeze-theorem.html): The squeeze (sandwich) theorem: if g(x) ≤ f(x) ≤ h(x) near a and g→L, h→L, then f→L. The standard tool when direct substitution and L'Hôp... - [Steepest Descent](https://unseel.com/mathematics/steepest-descent.html): Steepest descent (gradient descent with exact line search) iterates x_{k+1} = x_k − α_k ∇f(x_k) where α_k is the step that minimises f al... - [Stereographic Projection](https://unseel.com/mathematics/stereographic-projection.html): Stereographic projection maps a sphere minus one point onto Euclidean space. The map is conformal (angle-preserving) and sends circles to... - [Stirling Numbers](https://unseel.com/mathematics/stirling-numbers.html): Stirling numbers, named after James Stirling (1730), come in two kinds. Stirling numbers of the second kind S(n, k) count the number of w... - [Stirling's Approximation](https://unseel.com/mathematics/stirling-approximation.html): Stirling's approximation gives n! ≈ √(2πn)(n/e)ⁿ — an asymptotic formula whose relative error drops below 1% by n = 10 and below 0.1% by ... - [Stokes' Theorem](https://unseel.com/mathematics/stokes-theorem.html): Stokes' theorem says the surface integral of curl equals the line integral around the boundary: ∬_S (∇×F)·dS = ∮_∂S F·dr. It generalises ... - [Stone-Weierstrass Theorem](https://unseel.com/mathematics/stone-weierstrass.html): The Stone-Weierstrass theorem says any continuous function on a compact metric space is uniformly approximated by elements of a subalgebr... - [Student's t-Distribution](https://unseel.com/mathematics/student-t-distribution.html): Student's t-distribution: the distribution of (X̄ − μ)/(s/√n) when sample size is small and population variance is unknown. Heavier tails... - [Surface Integrals](https://unseel.com/mathematics/surface-integrals.html): A surface integral generalizes the line integral to two-dimensional surfaces in 3D space. The scalar version ∬_S f dS sums values like de... - [Tangent Space](https://unseel.com/mathematics/tangent-space.html): The tangent space TₚM at a point p of an n-dimensional smooth manifold M is the n-dimensional vector space that "best approximates" M nea... - [Taylor Series](https://unseel.com/mathematics/taylor-series.html): Any smooth function can be expanded as a polynomial near a point. Each added term expands the accurate region. Calculators, simulations, ... - [The Phase Plane](https://unseel.com/mathematics/phase-plane.html): The phase plane is the (x, ẋ) plot of a 2D autonomous system. Trajectories are integral curves of the vector field (f, g). Fixed-point ty... - [The Wronskian](https://unseel.com/mathematics/wronskian.html): The Wronskian W(y₁, y₂)(x) = y₁ y₂' − y₂ y₁' is the determinant that tests whether two solutions of a linear ODE are linearly independent... - [Topology](https://unseel.com/mathematics/topology-donuts.html): Topology cares about shapes up to smooth deformation. A coffee cup is a donut (one hole). A sphere is not (zero holes). The number of hol... - [Trace of a Matrix](https://unseel.com/mathematics/trace-of-matrix.html): The trace of a square matrix is the sum of its diagonal entries. It equals the sum of eigenvalues, is invariant under similarity, and obe... - [Trapezoidal Rule](https://unseel.com/mathematics/trapezoidal-rule.html): The trapezoidal rule approximates the integral ∫_a^b f(x) dx as the area of a trapezoid: (h/2)(f(a) + f(b)). The composite rule subdivide... - [Triangle Inequality](https://unseel.com/mathematics/triangle-inequality.html): The triangle inequality d(x,z) ≤ d(x,y) + d(y,z) is the defining axiom of metric spaces — detours never shorten a journey. Reverse form: ... - [Trig Identities](https://unseel.com/mathematics/trig-identities.html): Equations true for every angle — powerful rewriting tools. Pythagorean, double-angle, sum formulas. Derive from the unit circle, apply to... - [Trig Substitution](https://unseel.com/mathematics/trig-substitution.html): For integrands containing √(a²−x²), √(a²+x²), or √(x²−a²), substitute x = a·sin θ, a·tan θ, or a·sec θ respectively. The Pythagorean iden... - [Triple Integrals](https://unseel.com/mathematics/triple-integrals.html): A triple integral ∭_V f(x,y,z) dV adds up the values of a function across a 3D region. Cartesian coordinates use dV = dx dy dz; cylindric... - [U-Substitution](https://unseel.com/mathematics/u-substitution.html): U-substitution is the integration counterpart to the chain rule: ∫f(g(x))g'(x)dx = ∫f(u)du with u = g(x). The first technique every calcu... - [Uniform Convergence](https://unseel.com/mathematics/uniform-convergence.html): A sequence of functions f_n: D → ℝ converges uniformly to f if for every ε > 0 there exists N such that |f_n(x) − f(x)| < ε for all... - [Unit Circle](https://unseel.com/mathematics/unit-circle.html): A point on a unit circle has coordinates (cos θ, sin θ). As θ sweeps around, sine and cosine trace their waveforms. Every trig identity i... - [Unitary Matrix](https://unseel.com/mathematics/unitary-matrix.html): A unitary matrix U satisfies U*U = I — its inverse is its conjugate transpose. Unitary maps preserve every inner product, every length, e... - [Variation of Parameters](https://unseel.com/mathematics/variation-of-parameters.html): A general method for finding a particular solution to a non-homogeneous linear ODE Ly = f. Start with homogeneous solutions y₁, y₂. Repla... - [Vector Calculus Identities](https://unseel.com/mathematics/vector-calculus-identities.html): Vector calculus identities are the algebraic glue of E&M and fluid mechanics. The three signature identities — ∇·(∇×F) = 0, ∇×(∇φ) = 0, a... - [Vector Spaces](https://unseel.com/mathematics/vector-spaces.html): An abstract structure where vectors can be added and scaled. A minimal spanning set is a basis; its size is the dimension. Generalizes be... - [Wasserstein Distance](https://unseel.com/mathematics/wasserstein-distance.html): The Wasserstein distance W_p(μ, ν) is the minimum cost to transport probability mass from distribution μ to distribution ν, where cost is... - [Wave Equation](https://unseel.com/mathematics/wave-equation.html): The wave equation ∂²u/∂t² = c²∇²u is the canonical linear hyperbolic PDE — it governs light, sound, vibrating strings, and seismic waves.... - [Wilson's Theorem](https://unseel.com/mathematics/wilsons-theorem.html): Wilson's theorem: an integer n > 1 is prime if and only if (n−1)! ≡ −1 (mod n). Beautifully clean characterization of primes — but factor... - [Wishart Distribution](https://unseel.com/mathematics/wishart-distribution.html): The Wishart distribution W_p(n, Σ) is the distribution of n·S where S is the sample covariance matrix of n samples from a multivariate no... - [Young's Inequality](https://unseel.com/mathematics/young-inequality.html): Young's inequality: for conjugate p, q with 1/p + 1/q = 1, ab ≤ a^p/p + b^q/q for non-negative a, b. Engine that drives Hölder's inequali... - [Z-Transform](https://unseel.com/mathematics/z-transform.html): The Z-transform converts a discrete-time sequence x[n] into a function X(z) of a complex variable z. It is the discrete-domain analogue o... - [Zorn's Lemma](https://unseel.com/mathematics/zorn-lemma.html): Zorn's Lemma states: if every totally ordered subset (chain) of a partially ordered set P has an upper bound in P, then P contains at lea... ## Physics From subatomic particles to the cosmos. 390 concepts. - [Physics index](https://unseel.com/physics.html): All physics concepts - [AC vs DC Current](https://unseel.com/physics/ac-dc.html): 3D comparison. DC: electrons flow one direction steadily (battery). AC: electrons oscillate back and forth 60 times per second (wall outl... - [Acoustic Impedance](https://unseel.com/physics/acoustic-impedance.html): Acoustic impedance Z = ρc is a medium's resistance to sound. A mismatch at a boundary reflects sound; matching transmits it. Why air-wate... - [Acoustic Levitation](https://unseel.com/physics/acoustic-levitation.html): Acoustic levitation traps small objects at the pressure nodes of an intense standing sound wave, holding them in mid-air against gravity.... - [Adiabatic Invariant](https://unseel.com/physics/adiabatic-invariant.html): An adiabatic invariant is a quantity — the action J = ∮ p dq — that stays constant when a system parameter changes slowly. Shorten a pend... - [Aharonov-Bohm Effect](https://unseel.com/physics/aharonov-bohm-effect.html): A charged particle moving through a region of zero magnetic field still picks up a phase shift if the vector potential A is non-zero. The... - [Airy Disk](https://unseel.com/physics/airy-disk.html): Light through a circular aperture forms an Airy disk: bright central peak plus concentric rings. First dark ring at θ ≈ 1.22 λ/D — the Ra... - [Alfvén Wave](https://unseel.com/physics/alfven-wave.html): An Alfvén wave is a transverse MHD wave that travels along magnetic field lines as if they were vibrating strings under tension. Speed v_... - [Alpha Decay & Quantum Tunneling](https://unseel.com/physics/alpha-decay-tunneling.html): Alpha decay explained: an alpha particle escapes a nucleus by tunneling through the Coulomb barrier. Gamow theory and the Geiger-Nuttall ... - [Ampère's Law](https://unseel.com/physics/amperes-law.html): Ampère's law (André-Marie Ampère, 1826): the line integral of magnetic field B around any closed loop equals μ₀ times the total current p... - [Anderson Localization](https://unseel.com/physics/anderson-localization.html): Anderson localization is the trapping of waves and electrons by disorder: when a medium is random enough, interference between scattered ... - [Angular Momentum](https://unseel.com/physics/angular-momentum.html): 3D ice skater spinning. Arms out: slow spin. Pull arms in: spin faster. Angular momentum L=Iω stays constant — decrease moment of inertia... - [Antenna Radiation](https://unseel.com/physics/antenna-radiation.html): Accelerating charges radiate EM waves. A dipole antenna's pattern follows sin²θ — strongest broadside, zero off the ends. Half-wave dipol... - [Antimatter](https://unseel.com/physics/antimatter.html): 3D electron meets its antiparticle (positron). They annihilate in a flash, converting entirely to two gamma ray photons. Reverse: high-en... - [Asymptotic Freedom](https://unseel.com/physics/asymptotic-freedom.html): Asymptotic freedom: in quantum chromodynamics (QCD), the strong coupling α_s decreases logarithmically with increasing energy: &alp... - [Atomic Structure](https://unseel.com/physics/atomic-structure.html): 3D atom with a dense nucleus of protons (red) and neutrons (blue) surrounded by electron cloud (green orbiting dots). Zoom into nucleus t... - [Atwood Machine](https://unseel.com/physics/atwood-machine.html): An Atwood machine is two masses hung over a pulley by a string; the heavier mass falls with acceleration a = (m1 − m2)g/(m1 + m2), a slow... - [Ballistic Pendulum](https://unseel.com/physics/ballistic-pendulum.html): A ballistic pendulum measures a bullet's speed by firing it into a hanging block and measuring the swing height — momentum conservation i... - [Band Gap](https://unseel.com/physics/band-gap.html): The band gap E_g is the energy range in a solid where there are no allowed electron states, separating the filled valence band from the e... - [BCS Theory](https://unseel.com/physics/bcs-theory.html): BCS theory explains superconductivity: electrons bind into Cooper pairs via phonon exchange and condense into a single quantum state, ope... - [Beat Frequency](https://unseel.com/physics/beats.html): 3D two tuning forks with slightly different frequencies. Combined sound oscillates between loud (constructive) and quiet (destructive). B... - [Bell's Inequalities](https://unseel.com/physics/bell-inequalities.html): Bell's theorem (John Bell, 1964): any local hidden variable theory must satisfy certain inequalities; quantum mechanics violates them... - [Bernoulli's Principle](https://unseel.com/physics/bernoulli.html): 3D fluid flowing through a pipe that narrows. In the narrow section: velocity increases, pressure decreases. Apply to airplane wing: fast... - [Berry Phase](https://unseel.com/physics/berry-phase.html): The Berry phase is a geometric phase a quantum state acquires when its parameters are cycled adiabatically around a closed loop — it depe... - [Beta Decay](https://unseel.com/physics/beta-decay.html): Beta decay is radioactive decay where a neutron turns into a proton (or vice versa), emitting a fast electron and a near-invisible antine... - [Bifurcation](https://unseel.com/physics/bifurcation.html): A bifurcation is a qualitative change in dynamics as a parameter crosses a threshold — saddle-node, transcritical, pitchfork, and Hopf. T... - [Biot-Savart Law](https://unseel.com/physics/biot-savart-law.html): The Biot-Savart law (Jean-Baptiste Biot and Félix Savart, 1820) gives the magnetic field dB at point P due to an infinitesimal current el... - [Birefringence](https://unseel.com/physics/birefringence.html): Anisotropic crystals like calcite have two refractive indices — ordinary and extraordinary — that split unpolarized light into two orthog... - [Black Body Radiation](https://unseel.com/physics/black-body-radiation.html): 3D heated object glowing through spectrum: red at low temp, orange, yellow, white hot. Classical prediction (UV catastrophe) diverges to ... - [Bloch Sphere](https://unseel.com/physics/bloch-sphere.html): The Bloch sphere maps every pure single-qubit state to a point on a unit sphere: |0⟩ at the north pole, |1⟩ at the south, superpositions ... - [Bloch's Theorem](https://unseel.com/physics/bloch-theorem.html): Bloch's theorem explained: in a periodic crystal potential, electron wavefunctions are plane waves modulated by a lattice-periodic functi... - [Bohr Model of the Atom](https://unseel.com/physics/bohr-model.html): 3D atom with nucleus and electrons in discrete circular orbits. Electron jumps down an energy level and emits a photon (glowing particle)... - [Boltzmann Distribution](https://unseel.com/physics/boltzmann-distribution.html): The Boltzmann distribution is the fundamental probability law of statistical mechanics: in thermal equilibrium at temperature T, the prob... - [Bose-Einstein Condensate](https://unseel.com/physics/bose-einstein-condensate.html): Below a critical temperature T_c that depends only on density and mass, a dilute gas of bosons abruptly piles a macroscopic fraction of i... - [Bose-Einstein Statistics](https://unseel.com/physics/bose-einstein-statistics.html): Bose-Einstein statistics governs indistinguishable integer-spin particles: the mean occupation is n = 1/(e^((E−μ)/kT) − 1). Unlimited bos... - [Boundary Layer](https://unseel.com/physics/boundary-layer.html): The boundary layer is the thin film of slowed fluid right next to a solid surface. Ludwig Prandtl introduced it in 1904 and it transforme... - [Bra-Ket Notation](https://unseel.com/physics/bra-ket-notation.html): Bra-ket notation: Dirac's compact language for quantum mechanics. Kets |ψ⟩ are column vectors, bras ⟨ψ| are row vectors, inner product ⟨ψ... - [Brachistochrone Curve](https://unseel.com/physics/brachistochrone.html): The brachistochrone curve is the path of fastest descent between two points under gravity — an inverted cycloid, not a straight line. See... - [Brayton Cycle](https://unseel.com/physics/brayton-cycle.html): The Brayton cycle is the gas-turbine and jet-engine cycle — two adiabats plus two isobars. Efficiency depends on pressure ratio P₂/P₁. Mo... - [Brazil Nut Effect](https://unseel.com/physics/brazil-nut-effect.html): The Brazil nut effect is the size segregation seen when a mix of granular particles is shaken: the largest grains rise to the top. Driven... - [Bremsstrahlung](https://unseel.com/physics/bremsstrahlung.html): Bremsstrahlung is the electromagnetic radiation emitted when a charged particle is decelerated by another charge (usually a nucleus). The... - [Brewster's Angle](https://unseel.com/physics/brewsters-angle.html): Brewster's angle θ_B is the angle of incidence at which light reflected from a surface is completely polarized perpendicular to the plane... - [Brillouin Zone](https://unseel.com/physics/brillouin-zone.html): The Brillouin zone is the Wigner-Seitz primitive cell of the reciprocal lattice of a crystal. In real space, atoms repeat on a Bravais la... - [Brownian Motion](https://unseel.com/physics/brownian-motion.html): Brownian motion is the jittery random walk of a microscopic grain bombarded from all sides by unseen molecules. Einstein's 1905 predictio... - [Buoyancy](https://unseel.com/physics/buoyancy.html): 3D object submerged in water with upward buoyant force arrow and downward weight arrow. If buoyancy > weight: object floats. Show Archime... - [Capacitors](https://unseel.com/physics/capacitors.html): 3D parallel plate capacitor charging up. Electrons accumulate on one plate, creating an electric field between plates. Disconnect battery... - [Carnot Engine](https://unseel.com/physics/carnot-engine.html): 3D heat engine cycle: absorb heat from hot reservoir, do work (piston expands), exhaust waste heat to cold reservoir. Efficiency = 1 - Tc... - [Catenary Curve](https://unseel.com/physics/catenary-curve.html): The catenary curve is the exact shape a uniform chain takes hanging under its own weight: y = a·cosh(x/a). It is not a parabola, and flip... - [Cavitation](https://unseel.com/physics/cavitation.html): Cavitation is the formation and violent collapse of vapor bubbles in a liquid when local pressure drops below the vapor pressure — the sa... - [Center of Mass](https://unseel.com/physics/center-of-mass.html): 3D irregularly shaped object balanced on a point — the center of mass. Two masses connected by a rod: center of mass is closer to the hea... - [Centripetal vs Centrifugal](https://unseel.com/physics/centripetal-vs-centrifugal.html): 3D car turning in a circle. Centripetal: real force from friction pulling car inward. Centrifugal: fictitious force felt by passenger pus... - [Chain Fountain (Mould Effect)](https://unseel.com/physics/chain-fountain.html): The chain fountain (Mould effect) is a self-siphoning bead chain that arcs above its beaker before falling. The rising chain isn't just p... - [Chandrasekhar Limit](https://unseel.com/physics/chandrasekhar-limit.html): The Chandrasekhar limit M_Ch ≈ 1.4 solar masses is the maximum mass a white dwarf can have before electron degeneracy pressure can no lon... - [Chemical Potential](https://unseel.com/physics/chemical-potential.html): Chemical potential is the energy cost of adding one particle to a system. Particles flow from high to low chemical potential until equili... - [Cherenkov Radiation · Faster Than Light](https://unseel.com/physics/cherenkov-radiation.html): Cherenkov radiation explained in 3D — watch a charged particle outrun light in water and produce an eerie blue glow. Interactive animatio... - [Chiral Symmetry](https://unseel.com/physics/chiral-symmetry.html): Chiral symmetry is the freedom to rotate left-handed and right-handed fermions independently. Spontaneously broken in QCD by the quark co... - [Chladni Patterns](https://unseel.com/physics/chladni-patterns.html): Chladni patterns are the star-and-grid figures that sand draws on a vibrating plate: the grains slide off the moving antinodes and pile u... - [Circular Motion](https://unseel.com/physics/circular-motion.html): 3D ball on a string spinning in a circle. Velocity arrow tangent to circle, centripetal force arrow pointing inward. Cut the string and b... - [CKM Matrix](https://unseel.com/physics/ckm-matrix.html): The Cabibbo-Kobayashi-Maskawa matrix is the 3x3 unitary matrix encoding how weak interactions mix quark flavors. Three mixing angles plus... - [Clausius Inequality](https://unseel.com/physics/clausius-inequality.html): The Clausius inequality (Rudolf Clausius, 1854) states that for any thermodynamic cycle, ∮ dQ/T ≤ 0, where Q is heat absorbed by the syst... - [CMB Anisotropy](https://unseel.com/physics/cmb-anisotropy.html): The cosmic microwave background (CMB) is the relic radiation from when the universe became transparent to photons at z ≈ 1100 (cosmic age... - [Coanda Effect](https://unseel.com/physics/coanda-effect.html): The Coanda effect is the tendency of a fluid jet to stay attached to and bend around a nearby convex surface. Entrainment lowers the pres... - [Color and Light](https://unseel.com/physics/color-light.html): 3D white light hitting a prism and splitting into rainbow spectrum. Then show a red object: absorbs all colors except red which it reflec... - [Compton Scattering](https://unseel.com/physics/compton-scattering.html): When a high-energy photon strikes a free electron it bounces off carrying less energy and a longer wavelength, with the shift Δλ dependin... - [Conservation of Energy](https://unseel.com/physics/energy-conservation.html): 3D pendulum swinging. At top: max potential energy (gold glow), at bottom: max kinetic energy (cyan glow). Energy bar shows PE and KE tra... - [Conservation of Momentum](https://unseel.com/physics/momentum.html): 3D billiard balls colliding. Total momentum before equals total after. Show elastic collision (balls bounce) and inelastic (balls stick t... - [Continuity Equation](https://unseel.com/physics/continuity-equation.html): The continuity equation states that mass is conserved in a fluid: ∂ρ/∂t + ∇·(ρu) = 0, where ρ is density and u velocity. The first term i... - [Convex and Concave Lenses](https://unseel.com/physics/lens-optics.html): 3D parallel light rays passing through a convex lens converging to a focal point. Then concave lens diverging rays outward. Show real vs ... - [Cooper Pairs](https://unseel.com/physics/cooper-pairs.html): A Cooper pair is a bound state of two electrons of opposite spin and momentum, held together by a weak attractive interaction mediated by... - [Coriolis Effect · Rotating Frames](https://unseel.com/physics/coriolis-effect.html): The Coriolis effect explained in 3D — watch projectiles curve in rotating frames, hurricanes spiral, and Foucault pendulums precess. Inte... - [Cosmic Inflation](https://unseel.com/physics/inflation-theory.html): Cosmic inflation, proposed by Alan Guth (1980), Andrei Linde (1982), Steinhardt and Albrecht (1982), is the theory that the universe unde... - [Cosmic Rays](https://unseel.com/physics/cosmic-rays.html): 3D high-energy proton from space hitting upper atmosphere. Creates shower of secondary particles cascading downward: pions, muons, electr... - [Cosmological Constant Λ](https://unseel.com/physics/cosmological-constant.html): The cosmological constant Λ is a constant added to Einstein's field equations: G_μν + Λ g_μν = 8πG T_μν / c⁴. Einstein introduced Λ in 19... - [Coulomb's Law](https://unseel.com/physics/coulombs-law.html): 3D two charged particles with force arrows. Same charges repel, opposite attract. Double the distance: force drops to 1/4. Double a charg... - [Coupled Oscillators](https://unseel.com/physics/coupled-oscillators.html): Two pendulums or masses joined by a spring oscillate as a sum of two normal modes — a symmetric in-phase mode and an antisymmetric out-of... - [Critical Exponents](https://unseel.com/physics/critical-exponents.html): Critical exponents are the power laws that govern continuous phase transitions: magnetization ~ (Tc-T)^β, susceptibility ~ |T-Tc|^-γ, cor... - [Cyclotron](https://unseel.com/physics/cyclotron.html): A cyclotron uses a steady magnetic field plus an alternating voltage to spiral charged particles outward to high energy. The field bends ... - [Cyclotron Resonance](https://unseel.com/physics/cyclotron-resonance.html): Cyclotron resonance: a charged particle gyrates in a magnetic field at omega_c = qB/m and resonantly absorbs EM energy at that frequency.... - [Damped Oscillation](https://unseel.com/physics/damped-oscillation.html): A damped oscillator follows mẍ + bẋ + kx = 0, where m is mass, b is the damping coefficient, and k is the spring constant. Solutions spli... - [Dark Energy](https://unseel.com/physics/dark-energy.html): Dark energy is the unknown component making up ~68% of the energy density of the universe (Planck 2018), responsible for the accelerated ... - [Dark Matter](https://unseel.com/physics/dark-matter.html): Dark matter explained — invisible mass that holds galaxies together, bends light, and makes up 27% of the universe. - [de Broglie Wavelength](https://unseel.com/physics/de-broglie.html): 3D electron shown as both a particle and a wave. Faster electron: shorter wavelength. Slower: longer wavelength. Demonstrate electron dif... - [Debye Model of Heat Capacity](https://unseel.com/physics/heat-capacity-debye.html): The Debye model (Peter Debye, 1912) treats a solid's vibrational modes as a continuum of phonons (quantized lattice vibrations) with freq... - [Debye Shielding](https://unseel.com/physics/debye-shielding.html): Debye shielding is how a plasma screens any stray charge — a cloud of opposite charge rearranges to cancel the field over the Debye lengt... - [Density of States](https://unseel.com/physics/density-of-states.html): Density of states g(E) counts how many quantum states sit in each sliver of energy. In 3D it grows as √E; in 2D it is flat; in 1D it dive... - [Diamagnetism & Paramagnetism](https://unseel.com/physics/diamagnetism-paramagnetism.html): Diamagnetism and paramagnetism are the two weak magnetic responses of ordinary matter: diamagnets are repelled by a magnet (χ < 0), param... - [Dielectric Polarization](https://unseel.com/physics/dielectric-polarization.html): Dielectric polarization is the field-induced alignment of bound charge inside an insulator, creating an opposing field that lowers the ne... - [Diffraction](https://unseel.com/physics/diffraction.html): 3D wave passing through a narrow slit and spreading out on the other side. Show single slit diffraction pattern with central bright band ... - [Diffraction Grating](https://unseel.com/physics/diffraction-grating.html): A diffraction grating is a periodic array of N slits (or grooves) at spacing d that produces sharp principal maxima at angles satisfying ... - [Dirac Equation](https://unseel.com/physics/dirac-equation.html): The Dirac equation (iγ^μ∂_μ − m)ψ = 0 is the relativistic wave equation for spin-1/2 particles. It predicts antimatter, intrinsic spin, a... - [Dispersion Relation](https://unseel.com/physics/dispersion-relation.html): A dispersion relation is the function ω(k) linking a wave's frequency to its wavenumber. Its slope is phase velocity, its tangent group v... - [Displacement Current](https://unseel.com/physics/displacement-current.html): Displacement current ε₀·∂E/∂t is Maxwell's 1861 correction to Ampère's law — the term that makes the capacitor magnetic field consistent,... - [Doppler Effect](https://unseel.com/physics/doppler-effect.html): 3D ambulance moving with circular wave fronts. Waves compress ahead (higher pitch, blue) and stretch behind (lower pitch, red). Stationar... - [Double Pendulum Chaos](https://unseel.com/physics/double-pendulum-chaos.html): The double pendulum is fully deterministic yet chaotic — two near-identical starts diverge exponentially. The canonical desktop demo of d... - [Double-Slit Experiment](https://unseel.com/physics/double-slit-experiment.html): Light through two slits produces fringes spaced λL/d. With a 633 nm laser, d = 0.5 mm slits, L = 2 m screen: bands every 2.5 mm. Same pat... - [Drag Coefficient](https://unseel.com/physics/drag-coefficient.html): The drag coefficient (Cd) is a dimensionless number that captures how much a shape resists motion through a fluid. A sphere is ~0.47, a t... - [Driven Oscillator and Resonance](https://unseel.com/physics/driven-oscillator-resonance.html): A driven damped oscillator obeys mẍ + bẋ + kx = F₀ cos(ωt). The steady-state response is x(t) = A(ω) cos(ωt − φ) with amplitude A(ω) = F₀... - [Drude Model](https://unseel.com/physics/drude-model.html): The Drude model treats a metal as a gas of free electrons that scatter off ions every relaxation time tau, deriving Ohm's law and the con... - [Duffing Oscillator](https://unseel.com/physics/duffing-oscillator.html): The Duffing oscillator x'' + δx' + αx + βx³ = γcos(ωt) is a driven nonlinear spring whose cubic restoring term produces a bent resonance ... - [Eddy Currents](https://unseel.com/physics/eddy-currents.html): Drop a strong magnet through an aluminium tube and it falls in slow motion. Place a steel pan on an induction cooktop and the pan heats w... - [Effective Mass](https://unseel.com/physics/effective-mass.html): Effective mass is the apparent mass an electron acts as if it has inside a crystal, set by how sharply the energy band curves. It can be ... - [Effective Potential](https://unseel.com/physics/effective-potential.html): The effective potential folds a central-force orbit's angular momentum into a single 1D energy curve, so radial motion reduces to a parti... - [Einstein Field Equations](https://unseel.com/physics/einstein-field-equations.html): The Einstein field equations explained: matter curves spacetime and curvature dictates motion. G_μν + Λg_μν = 8πG/c⁴ T_μν — ten coupled n... - [Elastic Potential Energy](https://unseel.com/physics/elastic-potential.html): 3D bow and arrow. Pull the string back: elastic PE stored (energy bar fills gold). Release: PE converts to KE as arrow flies. PE = ½kx² s... - [Elastic vs Inelastic Collision](https://unseel.com/physics/elastic-inelastic-collision.html): All collisions conserve momentum. Elastic collisions also conserve kinetic energy; inelastic collisions lose it to heat and deformation. - [Elasticity Tensor](https://unseel.com/physics/elasticity-tensor.html): The elasticity tensor Cᵢⱼₖₗ generalizes Hooke's law to anisotropic 3D materials: σᵢⱼ = Cᵢⱼₖₗ εₖₗ. Symmetry reduces 81 components to at mo... - [Electric Current](https://unseel.com/physics/current-electricity.html): 3D wire cross-section showing electrons drifting slowly through a lattice of positive ions. Current direction is conventional (opposite t... - [Electric Field](https://unseel.com/physics/electric-field.html): 3D positive and negative charges with electric field lines flowing from positive to negative. Bring charges closer and field lines intens... - [Electrical Power](https://unseel.com/physics/power-electricity.html): 3D light bulb in a circuit. Power = current × voltage. Higher wattage = brighter glow. Show how your electricity bill relates to kilowatt... - [Electromagnetic Induction](https://unseel.com/physics/electromagnetic-induction.html): 3D magnet moving through a coil of wire. As the magnet enters, current flows one direction (meter deflects). As it exits, current reverse... - [Electromagnetic Spectrum](https://unseel.com/physics/electromagnetic-spectrum.html): 3D spectrum bar from long radio waves to short gamma rays. Each region lights up with its characteristic color/representation. Show the i... - [Electromagnetic Waves](https://unseel.com/physics/electromagnetic-wave.html): 3D wave showing oscillating electric field (vertical) and magnetic field (horizontal) perpendicular to each other and to the direction of... - [Electroweak Unification](https://unseel.com/physics/electroweak-unification.html): Electroweak unification: the Weinberg–Salam model unifies the weak and EM forces above ~250 GeV via SU(2)×U(1). Higgs mechanism breaks th... - [Entropy](https://unseel.com/physics/entropy.html): 3D box of gas particles. Start ordered in one corner: low entropy, few microstates. Particles spread randomly: high entropy, many microst... - [Equipartition Theorem](https://unseel.com/physics/equipartition-theorem.html): The equipartition theorem says each quadratic degree of freedom contributes ½kT to the mean energy of a system at temperature T. Predicts... - [Equivalence Principle](https://unseel.com/physics/equivalence-principle.html): The equivalence principle, Einstein's foundation for general relativity (1907), states that gravitational and inertial mass are identical... - [Ergosphere](https://unseel.com/physics/ergosphere.html): The ergosphere is the region outside a rotating black hole's event horizon where spacetime is dragged so violently that nothing can stay ... - [Escape Velocity](https://unseel.com/physics/escape-velocity.html): 3D rocket launching. Too slow: arcs back to Earth. At escape velocity (11.2 km/s): barely escapes gravity. Faster: escapes easily. Show h... - [Euler's Disk](https://unseel.com/physics/eulers-disk.html): Euler's disk is a spinning, rolling disk whose wobble (precession) speeds up without limit as it settles — the contact point races around... - [Evanescent Wave](https://unseel.com/physics/evanescent-wave.html): Evanescent waves are exponentially decaying fields that leak past a totally reflecting boundary. Penetration depth is fractions of a wave... - [Event Horizon](https://unseel.com/physics/event-horizon-physics.html): The event horizon of a black hole is the boundary at which the escape velocity equals c — beyond it, no causal signal (matter, photon, in... - [Exciton](https://unseel.com/physics/exciton.html): An exciton is a bound electron–hole pair created when a semiconductor absorbs a photon. It carries energy but no net charge, and recombin... - [Fabry-Perot Cavity](https://unseel.com/physics/fabry-perot.html): A Fabry-Perot cavity uses two parallel partial mirrors to build sharp transmission resonances at λ = 2nL/m. The basis of laser cavities, ... - [Faraday Rotation](https://unseel.com/physics/faraday-rotation.html): Faraday rotation is the rotation of light's polarization plane as it travels through a medium along a magnetic field. The angle is β = V·... - [Faraday Waves](https://unseel.com/physics/faraday-waves.html): Faraday waves are standing ripples that erupt on the surface of a vertically vibrated fluid once the shaking acceleration crosses a thres... - [Faraday's Law of Induction](https://unseel.com/physics/faradays-law.html): Faraday's law of induction: the EMF (electromotive force) induced in any closed loop equals the negative rate of change of magnetic flux ... - [Fermat's Principle](https://unseel.com/physics/fermat-principle-optics.html): Fermat's principle: light follows the path that extremizes optical path length. Implies Snell's law of refraction, the law of reflection,... - [Fermi Surface](https://unseel.com/physics/fermi-surface.html): The Fermi surface is the constant-energy surface in momentum (k-) space corresponding to the Fermi energy E_F — the highest occupied elec... - [Fermi-Dirac Statistics](https://unseel.com/physics/fermi-dirac-statistics.html): Fermi-Dirac statistics govern indistinguishable half-integer-spin particles obeying Pauli exclusion. Mean occupation n = 1/(e^((E-μ)/kT) ... - [Ferromagnetic Domains](https://unseel.com/physics/ferromagnetic-domains.html): Ferromagnetic domains are microscopic regions of uniformly aligned atomic spins in iron, nickel and cobalt. An external field grows align... - [Feynman Diagrams](https://unseel.com/physics/feynman-diagrams.html): Feynman diagrams (Richard Feynman, 1948) are graphical representations of terms in the perturbative expansion of scattering amplitudes in... - [Fine Structure](https://unseel.com/physics/fine-structure.html): Fine structure is the tiny splitting of atomic spectral lines caused by spin-orbit coupling and relativistic corrections, at the scale of... - [First Law of Thermodynamics](https://unseel.com/physics/thermodynamics-first.html): 3D gas in a piston. Heat added increases internal energy. Piston expands doing work. ΔU = Q - W shown with energy bars. Energy is neither... - [Fokker-Planck Equation](https://unseel.com/physics/fokker-planck-equation.html): The Fokker-Planck equation is the PDE for how a probability distribution evolves under drift plus diffusion — governing Brownian motion, ... - [Force on Current-Carrying Wire](https://unseel.com/physics/magnetic-force-wire.html): 3D wire carrying current placed in a magnetic field. Force pushes wire perpendicular to both current and field (right-hand rule). This is... - [Foucault Pendulum](https://unseel.com/physics/foucault-pendulum.html): A long pendulum's swing plane rotates relative to the ground as the Earth turns beneath it. The precession period equals 24 h divided by ... - [Four-Vector](https://unseel.com/physics/four-vector.html): A four-vector groups one time component and three spatial components into a single object that transforms covariantly under Lorentz boost... - [Fourier's Law & the Heat Equation](https://unseel.com/physics/fourier-heat-equation.html): Fourier's law says heat flux q = −k∇T — heat flows down the temperature gradient, fastest where temperature changes sharpest. Combine it ... - [Frame Dragging](https://unseel.com/physics/frame-dragging.html): Frame dragging is the twisting of spacetime by a rotating mass — the Lense-Thirring effect. Gravity Probe B measured it at 37.2 mas/yr; K... - [Fraunhofer Diffraction](https://unseel.com/physics/fraunhofer-diffraction.html): Fraunhofer diffraction (Joseph von Fraunhofer, 1820s) is the regime of wave diffraction where the source and observation point are effect... - [Fresnel Lens](https://unseel.com/physics/fresnel-lens.html): A Fresnel lens keeps only the curved surface of a thick lens, collapsing it into concentric ridges that refract light to the same focus w... - [Friction](https://unseel.com/physics/friction.html): 3D block on a surface. Push force increases until static friction breaks (block starts moving). Then kinetic friction takes over at lower... - [Gamma Decay](https://unseel.com/physics/gamma-decay.html): Gamma decay is when an excited atomic nucleus drops to a lower energy level by emitting a high-energy photon — a gamma ray — leaving the ... - [Gauss's Law](https://unseel.com/physics/gauss-law.html): Gauss's law: the total electric flux through any closed surface equals the total enclosed charge divided by the permittivity of free spac... - [Gaussian Beam](https://unseel.com/physics/gaussian-beam.html): A Gaussian beam is a laser beam with a bell-shaped intensity profile. Learn the waist w0, Rayleigh range z_R = π·w0²/λ, far-field diverge... - [General Relativity](https://unseel.com/physics/general-relativity.html): Einstein 1915: mass curves spacetime, and matter follows geodesics through that curvature. Gravity is geometry. - [Geodesic Equation](https://unseel.com/physics/geodesic-equation.html): The geodesic equation says free-falling objects follow the straightest possible paths through curved spacetime. Gravity is geometry, not ... - [Grand Canonical Ensemble](https://unseel.com/physics/grand-canonical-ensemble.html): The grand canonical ensemble describes a system that exchanges both energy and particles with a reservoir at fixed temperature T and chem... - [Gravitational Fields](https://unseel.com/physics/gravitational-field.html): 3D rubber sheet analogy. Place a heavy mass: sheet curves creating a well. Smaller objects roll toward the well following curved paths. S... - [Gravitational Lensing](https://unseel.com/physics/gravitational-lensing.html): Gravitational lensing is the bending of light by mass-warped spacetime, producing Einstein rings, arcs, and multiple images. Deflection i... - [Gravitational Redshift](https://unseel.com/physics/gravitational-redshift.html): Gravitational redshift: photons emitted from a region of strong gravitational potential are observed at lower frequency (longer wavelengt... - [Gravitational Waves](https://unseel.com/physics/gravitational-waves.html): Ripples in spacetime from merging black holes, detected by LIGO in 2015 and earning the 2017 Nobel Prize. - [Gravity](https://unseel.com/physics/gravity.html): 3D objects of different masses falling at the same rate in vacuum. Then show with air resistance where a feather falls slowly. Earth pull... - [Gravity Assist (Slingshot)](https://unseel.com/physics/gravity-assist.html): A gravity assist (slingshot) lets a spacecraft gain speed for free by flying past a moving planet. The planet's gravity bends the craft's... - [Group Velocity vs Phase Velocity](https://unseel.com/physics/group-velocity-vs-phase.html): A monochromatic wave cos(kx − ωt) has phase velocity v_p = ω/k. A wave packet (sum of nearby frequencies) propagates with group velocity ... - [Half-Life](https://unseel.com/physics/half-life.html): 3D sample of radioactive atoms. Every half-life period, half the atoms decay (flash and disappear). Start with 1000, then 500, 250, 125..... - [Hall Effect](https://unseel.com/physics/hall-effect.html): Send a current along a thin metal strip and stand a magnet across it. Within nanoseconds, charges deflect to one edge and a tiny voltage ... - [Hamilton-Jacobi Equation](https://unseel.com/physics/hamilton-jacobi.html): The Hamilton-Jacobi equation compresses all of mechanics into one PDE for the action S: ∂S/∂t + H(q, ∂S/∂q) = 0. Its characteristics are ... - [Hamiltonian Mechanics](https://unseel.com/physics/hamiltonian-mechanics.html): Hamiltonian mechanics replaces force with energy and trades two second-order equations for 2n first-order ones in phase space. The Hamilt... - [Hawking Radiation](https://unseel.com/physics/hawking-radiation.html): Black holes slowly evaporate as virtual particle pairs split at the event horizon. Stephen Hawking, 1974. - [Heat Transfer Methods](https://unseel.com/physics/heat-transfer-physics.html): 3D three panels side by side. Conduction: vibrating molecules pass energy along a metal bar. Convection: heated fluid rises, cool fluid s... - [Heisenberg Uncertainty Principle](https://unseel.com/physics/uncertainty-principle.html): 3D particle with position shown as a fuzzy cloud. Measure position precisely (cloud shrinks) and momentum arrow becomes wildly uncertain.... - [Helmholtz Resonance](https://unseel.com/physics/helmholtz-resonance.html): Helmholtz resonance is the low hum you get blowing across a bottle: the slug of air in the neck bounces like a mass on a spring against t... - [Higgs Boson](https://unseel.com/physics/higgs-boson.html): The particle associated with the Higgs field that gives other particles their mass. Discovered at CERN in 2012. - [Hohmann Transfer Orbit](https://unseel.com/physics/hohmann-transfer.html): The Hohmann transfer orbit is the fuel-cheapest two-burn elliptical path between two coplanar circular orbits: one prograde burn raises a... - [Holography](https://unseel.com/physics/holography.html): Holography is recording a 3D image as an interference pattern between an object beam and a reference beam, then re-illuminating the patte... - [Homopolar Motor](https://unseel.com/physics/homopolar-motor.html): A homopolar motor is the simplest electric motor: a wire, a battery, and a magnet. A radial current I crossing an axial field B feels a L... - [Hooke's Law](https://unseel.com/physics/springs-hooke.html): 3D spring with mass attached. Pull and release: oscillates. Double the displacement: double the restoring force. Stiffer spring (higher k... - [How Lasers Work](https://unseel.com/physics/laser.html): 3D atoms in a gain medium. Pump energy excites atoms to higher state (population inversion). One photon triggers stimulated emission: ide... - [Hubble's Law](https://unseel.com/physics/hubble-law.html): 3D galaxies on an expanding grid. Farther galaxies move away faster (longer red arrows). Light from distant galaxies stretched to red (re... - [Huygens' Principle](https://unseel.com/physics/huygens-principle.html): Huygens' principle says every point on a wavefront acts as a source of secondary spherical wavelets; the new wavefront is their envelope.... - [Hydrogen Atom Spectrum](https://unseel.com/physics/hydrogen-atom-spectrum.html): Hydrogen atom spectrum: discrete emission lines at E_n = -13.6 eV/n². Lyman series in UV (n→1), Balmer in visible (n→2), Paschen in IR. F... - [Ideal Gas Law](https://unseel.com/physics/ideal-gas-law.html): 3D gas particles bouncing inside a container. Increase temperature: particles move faster, pressure increases. Decrease volume: particles... - [Impulse and Momentum](https://unseel.com/physics/impulse.html): 3D egg dropping onto hard surface (short time, big force = crack) vs soft pillow (long time, small force = safe). Same impulse changes mo... - [Inclined Plane](https://unseel.com/physics/inclined-plane.html): An inclined plane tilts at angle θ. Decompose gravity into parallel mg·sin θ and perpendicular mg·cos θ components. Foundation for fricti... - [Ising Model](https://unseel.com/physics/ising-model.html): The Ising model is a lattice of spins ±1 with nearest-neighbour coupling J — the canonical model of ferromagnetism and phase transitions.... - [Josephson Junction](https://unseel.com/physics/josephson-junction.html): A Josephson junction is two superconductors split by a thin barrier where Cooper pairs tunnel: I = I_c·sin(Δφ). The AC effect ties voltag... - [Joule-Thomson Effect](https://unseel.com/physics/joule-thomson-effect.html): The Joule-Thomson effect: a real gas changes temperature when forced through a porous plug at constant enthalpy. Inversion temperature de... - [Kármán Vortex Street](https://unseel.com/physics/karman-vortex-street.html): A Kármán vortex street is the staggered double row of alternating, counter-rotating vortices a fluid sheds behind a blunt body when the R... - [Kelvin-Helmholtz Instability](https://unseel.com/physics/kelvin-helmholtz-instability.html): The Kelvin-Helmholtz instability arises at the interface between two fluid layers in shear flow — when one layer moves over another with ... - [Kepler's Laws](https://unseel.com/physics/keplers-laws.html): 3D planet orbiting a sun in an ellipse. Moves faster near the sun, slower far away (equal areas in equal times). Third law: farther plane... - [Kerr Effect](https://unseel.com/physics/kerr-effect.html): The Kerr effect is a change in a material's refractive index proportional to the square of an applied electric field — the basis of fast ... - [Kirchhoff's Laws](https://unseel.com/physics/kirchhoffs-laws.html): KCL: charge conserved at junctions. KVL: voltage sums to zero around loops. Foundation of all circuit analysis. - [Kutta Condition & Lift](https://unseel.com/physics/kutta-lift.html): The Kutta condition is the rule that flow leaves a sharp trailing edge smoothly, fixing the circulation around an airfoil — and that circ... - [Ladder Operators](https://unseel.com/physics/ladder-operators.html): Ladder operators are the raising (a†) and lowering (a) operators that step a quantum system between adjacent energy eigenstates — a† adds... - [Lagrange Points](https://unseel.com/physics/lagrange-points.html): Lagrange points are five locations in any two-body gravitational system where a small third body can sit nearly stationary relative to th... - [Lagrangian Mechanics](https://unseel.com/physics/lagrangian-mechanics.html): Lagrangian mechanics reformulates Newton's laws as a single scalar equation: a system follows the path that makes the time-integral of L ... - [Lamb Shift](https://unseel.com/physics/lamb-shift.html): The Lamb shift is a tiny 1057 MHz splitting between hydrogen's 2s and 2p levels that Dirac theory predicts should be degenerate. It is ca... - [Landau Damping](https://unseel.com/physics/landau-damping.html): Landau damping explained: a plasma wave decays with no collisions, transferring energy to particles moving near its phase velocity. The d... - [Landau Theory of Phase Transitions](https://unseel.com/physics/landau-phase-transition.html): Landau theory expands the free energy in the order parameter: F = F0 + a(T-Tc)m² + bm⁴. When a(T) changes sign at Tc, a single minimum sp... - [Langevin Equation](https://unseel.com/physics/langevin-equation.html): The Langevin equation m dv/dt = -γv + ξ(t) is the microscopic model of Brownian motion. The fluctuation-dissipation theorem ties the rand... - [Larmor Precession](https://unseel.com/physics/larmor-precession.html): Larmor precession is the wobble of a magnetic moment around an external magnetic field at angular frequency ω = γB. It underpins NMR, MRI... - [Laser Cooling](https://unseel.com/physics/laser-cooling.html): Laser cooling explained: counter-propagating red-detuned beams make atoms preferentially absorb photons opposing their motion, dragging g... - [Latent Heat](https://unseel.com/physics/latent-heat.html): 3D temperature graph with plateaus. Ice absorbs heat: temperature rises. At 0°C: temperature stops rising while ice melts (latent heat of... - [LC Circuit](https://unseel.com/physics/lc-circuit.html): Connect a charged capacitor to an inductor and the energy doesn't sit still. The capacitor discharges through the inductor, which winds t... - [Leidenfrost Effect](https://unseel.com/physics/leidenfrost-effect.html): The Leidenfrost effect: above ~193 °C a water droplet stops touching the surface and floats on a thin layer of its own vapor, so it skitt... - [Length Contraction](https://unseel.com/physics/length-contraction.html): Length contraction: moving objects appear shorter along the direction of motion. L = L₀√(1−v²/c²). Symmetric — each frame sees the other ... - [Lenz's Law](https://unseel.com/physics/lenz-law.html): 3D magnet dropping through a copper tube. Induced eddy currents create opposing magnetic field that slows the magnet's fall. The magnet f... - [Light Cone](https://unseel.com/physics/light-cone.html): The light cone at an event P is the set of points that a photon emitted at P can reach (future cone) or whose photons could reach P (past... - [Liouville's Theorem](https://unseel.com/physics/liouville-theorem.html): Liouville's theorem says phase-space density is conserved along Hamiltonian flow: dρ/dt = 0. Phase volume is incompressible — the foundat... - [Liquid Drop Model](https://unseel.com/physics/liquid-drop-model.html): The liquid drop model treats the nucleus as a charged liquid drop. Its semi-empirical mass formula B = a_V A − a_S A^(2/3) − a_C Z²/A^(1/... - [Logistic Map](https://unseel.com/physics/logistic-map.html): The logistic map x → r·x(1−x) is the simplest equation that becomes chaotic. Watch a fixed point split into a 2-cycle, 4-cycle, then chao... - [Lorentz Force](https://unseel.com/physics/lorentz-force.html): The Lorentz force is the total electromagnetic force on a point charge: F = q(E + v × B). The electric component qE acts along the field;... - [Lorentz Transformation](https://unseel.com/physics/lorentz-transformation.html): The Lorentz transformation describes how spacetime coordinates of an event change between two inertial frames moving at relative velocity... - [Lyapunov Exponent](https://unseel.com/physics/lyapunov-exponent.html): The Lyapunov exponent λ measures how fast nearby trajectories diverge: separation grows as δ(t) = δ₀e^(λt). A positive λ means chaos and ... - [Mach-Zehnder Interferometer](https://unseel.com/physics/mach-zehnder-interferometer.html): The Mach-Zehnder interferometer (Ludwig Mach 1891, Ludwig Zehnder 1892) splits a beam into two paths via a 50:50 beam splitter, reflects ... - [Magnetic Field](https://unseel.com/physics/magnetic-field.html): 3D bar magnet with field lines looping from north to south pole. Place a compass nearby and watch the needle align with the field. Show i... - [Magnetic Hysteresis](https://unseel.com/physics/magnetic-hysteresis.html): Magnetic hysteresis is the lag of a ferromagnet's magnetization behind the applied field, so M traces a loop, not a line — leaving remane... - [Magnetic Levitation · Meissner Effect](https://unseel.com/physics/magnetic-levitation.html): Magnetic levitation explained in 3D — see the Meissner effect expel magnetic flux, Cooper pairs form, and a superconductor float. Interac... - [Magnetic Monopole](https://unseel.com/physics/magnetic-monopole.html): A magnetic monopole would be a hypothetical isolated north or south magnetic charge. Dirac (1931) proved that if even one exists, every e... - [Magnetic Reconnection](https://unseel.com/physics/magnetic-reconnection.html): Magnetic reconnection is when oppositely directed field lines in a plasma break and rejoin at an X-point, converting stored magnetic ener... - [Magnetohydrodynamics (MHD)](https://unseel.com/physics/magnetohydrodynamics.html): Magnetohydrodynamics (MHD) describes the dynamics of electrically conducting fluids — plasmas, liquid metals, salt water — under the comb... - [Magnus Effect · Spinning Flight](https://unseel.com/physics/magnus-effect.html): The Magnus effect explained in 3D — watch spinning balls curve through air, see pressure differences and airflow streamlines. Interactive... - [Malus's Law](https://unseel.com/physics/malus-law.html): Malus's law: linearly polarized light through a polarizer at angle θ transmits intensity I = I₀·cos²θ. Aligned 100%, 45° = 50%, crossed =... - [Mass Spectrometer](https://unseel.com/physics/mass-spectrometer.html): A mass spectrometer ionizes a sample, accelerates the ions through a voltage, then bends them in a magnetic field. Lighter ions curve tig... - [Mass-Energy Equivalence](https://unseel.com/physics/emc2.html): 3D equation E=mc² with a small mass converting into an enormous burst of energy. Show that c² is a huge number (9×10¹⁶), so even tiny mas... - [Maxwell Relations](https://unseel.com/physics/maxwell-relations.html): Maxwell's relations are four identities relating partial derivatives of thermodynamic state functions, derived from the equality of mixed... - [Maxwell-Boltzmann Distribution](https://unseel.com/physics/maxwell-boltzmann-distribution.html): A jar of nitrogen at room temperature has 10²² molecules zipping around with no two moving at the same speed. The Maxwell-Boltzmann distr... - [Maxwell's Demon](https://unseel.com/physics/maxwells-demon.html): Maxwell's demon is a hypothetical entity that sorts molecules by speed to violate the second law. Resolved by Landauer's principle: erasi... - [Maxwell's Equations](https://unseel.com/physics/maxwells-equations.html): Maxwell's four equations bind electric and magnetic fields to charge, current, and each other — and predict that light is an electromagne... - [Meissner Effect](https://unseel.com/physics/meissner-effect.html): The Meissner effect is the active expulsion of magnetic field from a superconductor below its critical temperature — perfect diamagnetism... - [Michelson Interferometer](https://unseel.com/physics/michelson-interferometer.html): Michelson interferometer splits a beam down two arms, recombines them, and reads tiny path-length changes from the fringe shift. The same... - [Mie Scattering](https://unseel.com/physics/mie-scattering.html): Mie scattering is light scattering by particles comparable in size to the wavelength. It is only weakly wavelength-dependent and strongly... - [Minkowski Spacetime](https://unseel.com/physics/minkowski-spacetime.html): Minkowski spacetime is the 4D arena of special relativity, with one time and three space dimensions, equipped with the Minkowski metric d... - [Mirage (Gradient-Index Refraction)](https://unseel.com/physics/mirage.html): A mirage is gradient-index refraction: a steep temperature gradient near hot ground lowers the air's refractive index there, so light ray... - [Moment of Inertia](https://unseel.com/physics/rotational-inertia.html): 3D two wheels of same mass: solid disk vs ring. Ring has more moment of inertia (mass far from axis). Race them down a ramp: disk wins be... - [Moment of Inertia Tensor](https://unseel.com/physics/moment-of-inertia-tensor.html): For a rigid body, the moment of inertia is generally a 3×3 symmetric tensor I, not a single scalar. Components: I_ij = ∫ ρ(r) (δ_ij r² − ... - [Mössbauer Effect](https://unseel.com/physics/mossbauer-effect.html): The Mössbauer effect is recoil-free emission and absorption of gamma rays by nuclei locked in a crystal lattice, giving lines so sharp th... - [Mott Insulator](https://unseel.com/physics/mott-insulator.html): A Mott insulator is a material that band theory predicts should be a metal but which insulates because strong electron-electron repulsion... - [Navier-Stokes Equations](https://unseel.com/physics/navier-stokes-equations.html): The Navier-Stokes equations are the master equations of viscous fluid flow: ρ(∂u/∂t + (u·∇)u) = −∇p + μ∇²u + f, where u is velocity, ρ de... - [Negative Temperature](https://unseel.com/physics/negative-temperature.html): Negative temperature is a state where adding energy lowers entropy, achieved by population inversion in a bounded-energy system. It is ho... - [Neutrino Oscillations](https://unseel.com/physics/neutrino-oscillations.html): Neutrinos come in three flavors (electron, muon, tau) and three mass eigenstates (ν₁, ν₂, ν₃) — these... - [Neutron Moderation](https://unseel.com/physics/neutron-moderation.html): Neutron moderation is the slowing of fast fission neutrons by elastic collisions with light nuclei so they reach thermal energies that ef... - [Newton's First Law](https://unseel.com/physics/newtons-first-law.html): 3D object at rest stays at rest until a force acts on it. Then an object in motion continues at constant velocity until a force stops it.... - [Newton's Second Law](https://unseel.com/physics/newtons-second-law.html): 3D block with arrows showing force applied. Double the force, double the acceleration. Double the mass, half the acceleration. Animate F=... - [Newton's Third Law](https://unseel.com/physics/newtons-third-law.html): 3D two objects pushing against each other with equal and opposite force arrows. Skater pushes wall and moves backward. Rocket exhaust pus... - [Noether's Theorem](https://unseel.com/physics/noethers-theorem.html): Noether's theorem says every continuous symmetry of the action gives a conserved quantity. Time-translation gives energy, space-translati... - [Normal Force](https://unseel.com/physics/normal-force.html): Normal force is the contact-surface force perpendicular to the contact plane that prevents interpenetration. On flat ground N = mg; on in... - [Normal Modes](https://unseel.com/physics/normal-modes.html): Normal modes are the independent vibration patterns of coupled oscillators, each ringing at one frequency given by eigenvalues of K/M. N ... - [Nuclear Fission](https://unseel.com/physics/nuclear-fission.html): 3D uranium nucleus hit by a neutron, splitting into two smaller nuclei plus 2-3 neutrons. Those neutrons hit more uranium atoms creating ... - [Nuclear Fusion](https://unseel.com/physics/nuclear-fusion.html): 3D two hydrogen nuclei overcoming repulsion at extreme temperature and fusing into helium. Mass converts to energy (E=mc²). Show this is ... - [Nuclear Shell Model](https://unseel.com/physics/nuclear-shell-model.html): The nuclear shell model: protons and neutrons fill quantized energy shells like atomic electrons. Closed shells at the magic numbers 2, 8... - [Numerical Aperture](https://unseel.com/physics/numerical-aperture.html): Numerical aperture is NA = n·sin θ, the size of the light cone a lens collects. It sets the diffraction-limited resolution: bigger cone, ... - [Ohm's Law](https://unseel.com/physics/ohms-law-physics.html): 3D simple circuit with battery, resistor, and ammeter. Increase voltage: current increases. Increase resistance: current decreases. Show ... - [Optical Aberrations](https://unseel.com/physics/optical-aberrations.html): Optical aberrations are imperfections that stop a lens or mirror from focusing all rays to one sharp point — spherical, chromatic, coma, ... - [Optical Caustics](https://unseel.com/physics/optical-caustics.html): Optical caustics are the bright cusped curves where a curved reflecting or refracting surface focuses light — the shimmering net on a poo... - [Optical Coherence](https://unseel.com/physics/optical-coherence.html): Optical coherence is how long a light wave stays in step with itself, set by coherence length and time. A laser stays coherent for kilome... - [Optical Fiber](https://unseel.com/physics/optical-fiber.html): An optical fiber is a hair-thin glass thread that guides light by total internal reflection in its high-index core, carrying terabits ove... - [Optical Tweezers](https://unseel.com/physics/optical-tweezers.html): Optical tweezers use a tightly focused laser to trap dielectric beads and living cells via the gradient force, exerting piconewton forces... - [Optical Vortex (Orbital Angular Momentum)](https://unseel.com/physics/optical-vortex.html): An optical vortex is a light beam whose wavefront is a helix (a screw of constant phase), forcing a dark core on the axis where the phase... - [Otto Cycle](https://unseel.com/physics/otto-cycle.html): The Otto cycle is the idealized four-stroke gasoline engine — adiabatic compression, isochoric heat in, adiabatic expansion, isochoric he... - [Pair Production](https://unseel.com/physics/pair-production.html): Pair production is when a high-energy photon converts into an electron and a positron near a nucleus. It needs at least 1.022 MeV — twice... - [Parallel Axis Theorem](https://unseel.com/physics/parallel-axis-theorem.html): The parallel axis theorem (Steiner 1840s, but in earlier Euler form): for a rigid body of mass M, the moment of inertia I about an axis p... - [Parametric Resonance](https://unseel.com/physics/parametric-resonance.html): Parametric resonance is growth of oscillation when a system parameter is modulated at twice the natural frequency — like pumping a swing ... - [Parity Violation](https://unseel.com/physics/parity-violation.html): Parity violation: in 1956 Lee and Yang theorized that the weak interaction might violate parity (P) symmetry — meaning a mirror-ref... - [Particle in a Box](https://unseel.com/physics/particle-in-a-box.html): Particle in a 1D infinite square well: E_n = n²π²ℏ²/(2mL²), ψ_n(x) = √(2/L)·sin(nπx/L). The cleanest demonstration that boundary conditio... - [Partition Function](https://unseel.com/physics/partition-function-physics.html): The partition function Z = Σ exp(−βEᵢ) encodes all thermodynamic properties of a system at temperature T. Free energy F = −kT·ln Z. Avera... - [Pascal's Principle](https://unseel.com/physics/pascal-pressure.html): 3D hydraulic press with small piston and large piston connected by fluid. Push small piston: pressure transmits equally. Large piston lif... - [Paul Trap (Ion Trap)](https://unseel.com/physics/paul-trap.html): A Paul trap (RF ion trap) confines a single charged ion using an oscillating quadrupole electric field. Earnshaw's theorem forbids a stat... - [Pauli Exclusion Principle](https://unseel.com/physics/pauli-exclusion.html): 3D atom with electron shells filling up. Each orbital holds max 2 electrons with opposite spins. Try to add a third: rejected. This princ... - [Peltier Effect](https://unseel.com/physics/peltier-effect.html): The Peltier effect is the heating or cooling at the junction of two different conductors when current flows through it. Push electrons ac... - [Penrose Process](https://unseel.com/physics/penrose-process.html): The Penrose process is a way to extract rotational energy from a spinning black hole: a particle splits inside the ergosphere, one piece ... - [Percolation](https://unseel.com/physics/percolation.html): Percolation is the sudden onset of system-spanning connectivity: add random links one at a time and, at a sharp critical fraction pc, a g... - [Phase Changes](https://unseel.com/physics/phase-changes.html): 3D molecules in three states. Solid: locked in lattice vibrating in place. Liquid: loosely bonded, flowing. Gas: free flying, filling con... - [Phonons](https://unseel.com/physics/phonons.html): A phonon is the quantum-mechanical particle representation of a normal mode of lattice vibration in a crystal — analogous to a photon for... - [Photoelectric Effect](https://unseel.com/physics/photoelectric-effect.html): 3D metal surface hit by photons. Below threshold frequency: no electrons emitted regardless of intensity. Above threshold: electrons pop ... - [Photovoltaic Effect](https://unseel.com/physics/photodetector.html): 3D solar cell cross-section. Photons hit semiconductor p-n junction, knock electrons free creating current. Show electron-hole pairs, dep... - [Piezoelectricity · Crystal Power](https://unseel.com/physics/piezoelectricity.html): Piezoelectricity explained in 3D — squeeze a crystal and watch voltage appear. See ion displacement, electric fields, and the inverse eff... - [Plasma](https://unseel.com/physics/plasma-state.html): Ionized gas of free electrons and ions. Makes up 99% of visible matter in the universe, including stars and lightning. - [Plasma Frequency](https://unseel.com/physics/plasma-frequency.html): Plasma frequency ω_p = √(n·e²/ε₀·m_e) is the natural oscillation rate of electron density in a plasma. EM waves below it are reflected — ... - [Plasma Sheath](https://unseel.com/physics/plasma-sheath.html): A plasma sheath is the thin, ion-rich layer a plasma forms against any wall, a few Debye lengths thick, where a strong field repels elect... - [Plateau-Rayleigh Instability](https://unseel.com/physics/plateau-rayleigh-instability.html): The Plateau-Rayleigh instability is why a falling stream of water breaks into droplets: surface tension amplifies any pinch whose wavelen... - [Poincaré Section](https://unseel.com/physics/poincare-section.html): A Poincaré section slices through phase space once per period, turning a continuous flow into a discrete map. Periodic motion lands on a ... - [Poiseuille Flow](https://unseel.com/physics/poiseuille-flow.html): Poiseuille flow is the steady laminar motion of a viscous fluid through a cylindrical pipe. The velocity profile is a parabola; the flow ... - [Poisson Brackets](https://unseel.com/physics/poisson-brackets.html): The Poisson bracket {f,g} encodes Hamiltonian time evolution: df/dt = {f,H}. The fundamental bracket {q,p}=1 is the classical structure t... - [Poisson's Spot (Arago Spot)](https://unseel.com/physics/poisson-spot.html): Poisson's spot (the Arago spot) is the bright point of light that appears dead-center in the shadow of a circular disk — the wave-optics ... - [Polarization of Light](https://unseel.com/physics/polarization.html): 3D unpolarized light waves oscillating in all directions pass through a polarizing filter. Only one orientation passes through. Add a sec... - [Poynting Vector](https://unseel.com/physics/poynting-vector.html): The Poynting vector S = E × H is the energy flux density of the electromagnetic field, in watts per square meter. Its direction tells you... - [Precession (Gyroscope)](https://unseel.com/physics/precession-gyroscope.html): A spinning top under gravity precesses around the vertical axis at Ω = mgr/(Iω). Same physics powers bicycles, gyrocompasses, and MRI pro... - [Pressure](https://unseel.com/physics/pressure.html): 3D same force applied to large area (low pressure, doesn't pop balloon) vs small area (high pressure, nail pops balloon). Show snowshoes ... - [Principle of Superposition](https://unseel.com/physics/superposition.html): 3D two waves approaching each other. When they overlap: amplitudes add (constructive) or cancel (destructive). After passing through, the... - [Prism Dispersion](https://unseel.com/physics/prism-dispersion.html): Prism dispersion is the splitting of white light into its colors because a glass prism's refractive index changes with wavelength — viole... - [Projectile Motion](https://unseel.com/physics/projectile-motion.html): 3D ball launched at an angle tracing a parabolic arc. Decompose into horizontal (constant velocity) and vertical (accelerating) component... - [Pulley Systems](https://unseel.com/physics/pulley-systems.html): Pulley systems trade force for distance. Fixed pulley redirects force. Single movable pulley halves it. Compound systems with n movable p... - [Quantum Decoherence](https://unseel.com/physics/quantum-decoherence.html): Quantum decoherence is the loss of phase coherence between a system's superposed branches as it entangles with its environment, making in... - [Quantum Dot](https://unseel.com/physics/quantum-dot.html): A quantum dot is a semiconductor nanocrystal (~2–10 nm) that confines electrons like a particle in a box, so shrinking it widens the band... - [Quantum Entanglement](https://unseel.com/physics/quantum-entanglement.html): Two particles linked so deeply that measuring one instantly affects the other, no matter the distance. Nobel Prize 2022. - [Quantum Eraser](https://unseel.com/physics/quantum-eraser.html): The quantum eraser shows that interference fringes vanish the moment which-path information becomes available — and reappear when you era... - [Quantum Hall Effect](https://unseel.com/physics/quantum-hall-effect.html): The quantum Hall effect quantizes the Hall conductance of a 2D electron gas as σ_xy = ν·e²/h, with plateaus precise to 1 part in 10⁹. It ... - [Quantum Harmonic Oscillator](https://unseel.com/physics/quantum-harmonic-oscillator.html): The quantum harmonic oscillator: E_n = ℏω(n+½), evenly spaced ladder. Ground state has E₀ = ½ℏω zero-point energy. Foundation of phonons,... - [Quantum Teleportation](https://unseel.com/physics/quantum-teleportation.html): Quantum teleportation transfers an unknown qubit's state to a distant qubit using a shared entangled pair, a Bell measurement, and two cl... - [Quantum Tunneling](https://unseel.com/physics/quantum-tunneling.html): 3D particle approaching an energy barrier taller than its energy. Classically impossible to pass. But the quantum wavefunction leaks thro... - [Quantum Zeno Effect](https://unseel.com/physics/quantum-zeno-effect.html): A watched quantum state cannot decay. Repeated measurements project the system back to its initial state at every step, and the survival ... - [Quarks & the Strong Force](https://unseel.com/physics/quarks-strong-force.html): Protons and neutrons are made of three quarks bound by gluons exchanging color charge. The strong force gets stronger with distance — qua... - [Rabi Oscillation](https://unseel.com/physics/rabi-oscillation.html): A two-level atom driven by a resonant field oscillates between ground and excited states at the Rabi frequency. P_excited = sin²(Ωt/2) — ... - [Radioactive Decay](https://unseel.com/physics/radioactive-decay.html): 3D unstable nucleus emitting three types of radiation: alpha particle (2p+2n cluster), beta particle (electron), gamma ray (photon wave).... - [Railgun](https://unseel.com/physics/railgun.html): A railgun fires a projectile by running a huge pulsed current up one rail, across a sliding armature, and back down the other rail. The c... - [Rainbow Formation](https://unseel.com/physics/rainbow-formation.html): A rainbow forms when sunlight refracts into a spherical raindrop, reflects once off the back surface, and refracts again on exit — emergi... - [Rattleback](https://unseel.com/physics/rattleback.html): A rattleback (celt or wobblestone) is a semi-ellipsoid that spins smoothly one way but stalls, rattles, and reverses when spun the other ... - [Rayleigh Scattering](https://unseel.com/physics/rayleigh-scattering.html): Rayleigh scattering is scattering by particles much smaller than the wavelength of light, with cross-section proportional to 1/λ⁴. Blue s... - [Rayleigh-Bénard Convection](https://unseel.com/physics/rayleigh-benard-convection.html): Rayleigh-Bénard convection is the self-organized roll and hexagonal cell pattern a fluid forms when heated from below. Above the critical... - [Rayleigh-Taylor Instability](https://unseel.com/physics/rayleigh-taylor-instability.html): The Rayleigh-Taylor instability occurs when a denser fluid sits above a less dense one in a gravitational field — any small perturbation ... - [Reflection](https://unseel.com/physics/reflection.html): 3D light ray hitting a mirror surface. Angle of incidence equals angle of reflection. Show multiple rays reflecting to form an image. Nor... - [Refraction](https://unseel.com/physics/refraction.html): 3D light ray entering water from air, bending toward the normal. Show the angle of incidence and angle of refraction. Demonstrate total i... - [Relativistic Doppler Effect](https://unseel.com/physics/relativistic-doppler.html): Relativistic Doppler: f' = f·√((1-β)/(1+β)) for recession. Unlike classical Doppler, a transverse shift exists from time dilation alone. ... - [Relativistic Momentum](https://unseel.com/physics/relativistic-momentum.html): Relativistic momentum p = γmv diverges as v → c, conserved in every inertial frame. Reduces to Newtonian p = mv at low speeds. Photons: p... - [Renormalization Group](https://unseel.com/physics/renormalization-group.html): The renormalization group is systematic coarse-graining: integrate out short-wavelength fluctuations, rescale, and watch coupling constan... - [Resonance](https://unseel.com/physics/resonance.html): 3D swing being pushed at its natural frequency — amplitude grows dramatically. Push at wrong frequency — nothing happens. Show Tacoma Nar... - [Reynolds Number](https://unseel.com/physics/reynolds-number.html): The Reynolds number Re = ρvL/μ is a dimensionless ratio of inertial to viscous forces. Below a critical value the flow is laminar — order... - [Right-Hand Rule](https://unseel.com/physics/right-hand-rule.html): 3D hand with thumb (current direction), fingers (magnetic field direction), and palm (force direction). Apply to wire in magnetic field, ... - [Roche Limit](https://unseel.com/physics/roche-limit.html): The Roche limit is the distance below which a moon held together by its own gravity gets torn apart, because the planet's tidal force pul... - [Rolling Without Slipping](https://unseel.com/physics/rolling-without-slipping.html): Rolling without slipping enforces the constraint v = ωR. Kinetic energy splits into translation ½mv² + rotation ½Iω². For a solid sphere,... - [Rosensweig Instability (Ferrofluid Spikes)](https://unseel.com/physics/rosensweig-instability.html): The Rosensweig instability is the spontaneous breakup of a flat ferrofluid surface into a hexagonal array of peaks once a vertical magnet... - [Sagnac Effect](https://unseel.com/physics/sagnac-effect.html): The Sagnac effect: send two light beams in opposite directions around a rotating loop and they return out of phase. The phase shift ΔΦ = ... - [Scanning Tunneling Microscope](https://unseel.com/physics/scanning-tunneling-microscope.html): A scanning tunneling microscope (STM) drags an atomically sharp tip ~1 nm above a conducting surface and reads the quantum tunneling curr... - [Schrödinger's Cat](https://unseel.com/physics/schrodinger-cat.html): 3D box containing a cat, a radioactive atom, and a Geiger counter. Before opening: cat is in superposition (ghostly alive+dead overlay). ... - [Schwarzschild Radius](https://unseel.com/physics/schwarzschild-radius.html): Compress any mass M inside the radius r_s = 2GM/c² and you have a black hole. The Schwarzschild radius scales linearly with mass: 2.95 km... - [Second Law of Thermodynamics](https://unseel.com/physics/thermodynamics-second.html): 3D ordered particles in a box spontaneously spreading to fill the space. Entropy meter increases. Show that heat flows from hot to cold n... - [Second-Harmonic Generation](https://unseel.com/physics/second-harmonic-generation.html): Second-harmonic generation (SHG) fuses two photons of frequency ω into one photon of 2ω inside a χ⁽²⁾ crystal — the trick that turns invi... - [Seebeck Effect](https://unseel.com/physics/seebeck-effect.html): The Seebeck effect is the generation of a voltage across a conductor when its two ends are held at different temperatures. It powers ther... - [Selection Rules](https://unseel.com/physics/selection-rules.html): Selection rules are conditions on quantum numbers that decide which atomic transitions are allowed. Electric-dipole jumps need Δl = ±1; v... - [Self-Organized Criticality (Sandpile)](https://unseel.com/physics/self-organized-criticality.html): Self-organized criticality is how a slowly driven, dissipative system tunes itself to the brink of avalanches of every size, with no exte... - [Semiconductors](https://unseel.com/physics/semiconductors.html): 3D silicon crystal lattice. Pure silicon: few free electrons. Add phosphorus (n-type): extra electrons. Add boron (p-type): electron hole... - [Series vs Parallel Circuits](https://unseel.com/physics/electric-circuits.html): 3D series circuit (one path, current same everywhere) vs parallel circuit (multiple paths, voltage same across each). Remove a bulb in se... - [Shapiro Delay](https://unseel.com/physics/shapiro-delay.html): The Shapiro delay is the extra travel time a light or radar signal accumulates when it passes near a massive body — relativity's fourth c... - [Shock Wave](https://unseel.com/physics/shock-wave.html): A shock wave is a thin discontinuity where pressure, density, and velocity jump abruptly. Rankine-Hugoniot conditions relate the upstream... - [Simple Harmonic Motion](https://unseel.com/physics/simple-harmonic.html): 3D mass on a spring bouncing up and down. Position, velocity, and acceleration graphs trace sinusoidal curves in real-time. Show the rela... - [Simple Machines](https://unseel.com/physics/simple-machines.html): 3D showcase of six simple machines. Lever: small force × long arm = big force × short arm. Inclined plane: less force over longer distanc... - [Simple Pendulum](https://unseel.com/physics/simple-pendulum.html): A mass swinging from a pivot. Period T = 2π√(L/g) depends only on length and gravity, not mass or amplitude. Galileo 1583. - [Skin Depth](https://unseel.com/physics/skin-depth.html): Skin depth δ = √(2/μσω) is the characteristic depth to which an AC field penetrates a conductor. Copper at 60 Hz: δ ≈ 8.5 mm; at 1 GHz: δ... - [Skin Effect](https://unseel.com/physics/skin-effect.html): The skin effect drives alternating current toward the outer skin of a conductor and starves the core. The characteristic penetration dept... - [Snell's Law](https://unseel.com/physics/snells-law.html): Snell's law: when a wave (light, sound, water wave) passes from a medium of refractive index n₁ to one of n₂, the angles to the surface n... - [Soliton](https://unseel.com/physics/soliton.html): A soliton is a self-reinforcing solitary wave in which nonlinearity exactly cancels dispersion, so the pulse keeps its shape forever and ... - [Sonic Boom (Mach Cone)](https://unseel.com/physics/sonic-boom.html): A sonic boom is the thunder-like shock that reaches you after an object flies faster than sound (Mach > 1). The aircraft outruns its own ... - [Sound Waves](https://unseel.com/physics/sound-waves.html): 3D speaker emitting longitudinal sound waves. Particles compress and rarefy in the direction of travel. Show how frequency changes pitch ... - [Special Relativity](https://unseel.com/physics/special-relativity.html): 3D spaceship approaching light speed. Clocks on the ship slow down (time dilation). The ship appears compressed in the direction of trave... - [Specific Heat Capacity](https://unseel.com/physics/specific-heat.html): 3D comparison: same heat applied to water (high specific heat, slow temperature rise) vs metal (low specific heat, fast temperature rise)... - [Spin-½](https://unseel.com/physics/spin-half.html): Electrons, protons, neutrons, and quarks carry intrinsic angular momentum ℏ/2 with only two basis states |↑⟩ and |↓⟩. A 360° rotation fli... - [Spin-Statistics Theorem](https://unseel.com/physics/spin-statistics-theorem.html): The spin-statistics theorem (Wolfgang Pauli, 1940): in relativistic QFT, particles of integer spin (0, 1, 2, …) must obey Bose-Einstein s... - [SQUID Magnetometer](https://unseel.com/physics/squid-magnetometer.html): A SQUID magnetometer is a superconducting loop with two Josephson junctions whose critical current is modulated by magnetic flux. Each fl... - [Standard Model](https://unseel.com/physics/standard-model.html): 3D periodic table of particles. Quarks (6 flavors in 3 colors), leptons (electron, muon, tau + neutrinos), force carriers (photon, gluon,... - [Standing Waves](https://unseel.com/physics/standing-waves.html): 3D string fixed at both ends vibrating in standing wave patterns. Show fundamental, 2nd harmonic, 3rd harmonic. Nodes stay still, antinod... - [Stark Effect](https://unseel.com/physics/stark-effect.html): The Stark effect is the shifting and splitting of atomic energy levels in an electric field — linear (∝ E) for hydrogen, quadratic (∝ E²)... - [Static Electricity](https://unseel.com/physics/static-electricity.html): 3D balloon rubbed on hair, electrons transfer. Balloon becomes negative, hair positive. Balloon sticks to wall. Hair stands up from repul... - [Stefan-Boltzmann Law](https://unseel.com/physics/stefan-boltzmann-law.html): The Stefan-Boltzmann law states that the power radiated per unit area by a black body is σT⁴, where σ = 5.67 × 10⁻⁸ W/m²K⁴. Doubling the ... - [Stern-Gerlach Experiment](https://unseel.com/physics/stern-gerlach-experiment.html): Otto Stern and Walther Gerlach fired a beam of silver atoms through a steeply non-uniform magnetic field in 1922 and saw two sharp spots,... - [Stirling Engine](https://unseel.com/physics/stirling-engine.html): A Stirling engine is a closed-cycle, external-combustion heat engine that converts a temperature difference into work by shuttling a fixe... - [Stokes Drag](https://unseel.com/physics/stokes-drag.html): Stokes drag is the viscous resistance F = 6πμrv on a small sphere moving slowly through fluid. It dominates at low Reynolds number and se... - [Strange Attractors](https://unseel.com/physics/strange-attractors.html): A fractal-dimensional set in phase space toward which a chaotic system evolves — never repeats, never settles. - [String Theory](https://unseel.com/physics/string-theory.html): String theory visualized — tiny vibrating strings replace point particles, with different vibrations creating different particles across ... - [Structural Color](https://unseel.com/physics/structural-color.html): Structural color is color produced by microscopic structures that interfere with light rather than by pigments that absorb it. Periodic l... - [Superconductivity](https://unseel.com/physics/superconductivity.html): 3D material cooling below critical temperature. Resistance drops to exactly zero (graph). Magnetic field expelled (Meissner effect): magn... - [Superfluidity](https://unseel.com/physics/superfluidity.html): A phase of matter where viscosity drops to zero. Helium-4 below 2.17 K and helium-3 below 2.5 mK enter this state. - [Surface Plasmon](https://unseel.com/physics/surface-plasmon.html): A surface plasmon is a collective oscillation of metal conduction electrons coupled to light, bound to a metal-dielectric interface and c... - [Surface Tension](https://unseel.com/physics/surface-tension.html): Surface tension is the force per unit length that pulls a liquid surface into the smallest area possible. It comes from the unbalanced co... - [Tennis Racket Theorem](https://unseel.com/physics/tennis-racket-theorem.html): The tennis racket theorem says rotation about a rigid body's intermediate principal axis is unstable: flip a racket and it makes a half-t... - [Terminal Velocity](https://unseel.com/physics/terminal-velocity.html): 3D skydiver falling. Initially accelerates (gravity > drag). As speed increases, drag force grows. When drag = gravity: acceleration stop... - [The Casimir Effect](https://unseel.com/physics/casimir-effect.html): An attractive force between two uncharged conducting plates in vacuum, predicted by Casimir 1948 and measured by Lamoreaux 1997. - [The Higgs Field](https://unseel.com/physics/higgs-field.html): A scalar quantum field with non-zero vacuum expectation value (~246 GeV) that gives mass to particles via the Mexican Hat potential. - [Thermal Expansion](https://unseel.com/physics/thermal-expansion.html): 3D metal bar with atoms vibrating. Heat applied: atoms vibrate more, pushing apart. Bar visibly lengthens. Show expansion joints in bridg... - [Thin Film Interference](https://unseel.com/physics/thin-film-interference.html): 3D thin film (soap bubble) with light reflecting from top and bottom surfaces. Path difference causes constructive interference for some ... - [Third Law of Thermodynamics](https://unseel.com/physics/third-law-thermodynamics.html): The third law of thermodynamics (Walther Nernst, 1906; Max Planck refinement 1911) states: as the temperature of a system approaches abso... - [Three-Body Problem](https://unseel.com/physics/three-body-problem.html): The three-body problem asks how three masses move under mutual gravity. There is no general closed-form solution — the motion is chaotic ... - [Tidal Force](https://unseel.com/physics/tidal-force.html): The tidal force is the difference in gravity across a body — the near side is pulled harder than the far side, stretching the body along ... - [Time Dilation](https://unseel.com/physics/time-dilation.html): Time dilation explained — see how speed slows time with light clocks, the twin paradox, and why GPS needs relativity corrections. - [Tippe Top](https://unseel.com/physics/tippe-top.html): A tippe top is a spinning top that flips itself over to balance on its stem. Sliding friction at the contact point produces a torque that... - [Tokamak Confinement](https://unseel.com/physics/tokamak-confinement.html): A tokamak (Russian acronym, 1950s) is a toroidal magnetic confinement device for fusion plasma. Confinement is achieved by combining: (1)... - [Topological Insulators](https://unseel.com/physics/topological-insulators.html): Materials whose interior is insulating but whose surface conducts electricity in scattering-immune edge states protected by topology. - [Torque](https://unseel.com/physics/torque.html): 3D wrench turning a bolt. Longer wrench (more lever arm) = more torque with same force. Show the perpendicular force component matters. D... - [Total Internal Reflection](https://unseel.com/physics/total-internal-reflection.html): 3D light ray inside glass hitting the surface at increasing angles. Below critical angle: some refracts out. At critical angle: ray skims... - [Transformer](https://unseel.com/physics/transformer.html): 3D transformer with primary and secondary coils around an iron core. More turns on secondary: voltage steps up. Fewer turns: voltage step... - [Twin Paradox](https://unseel.com/physics/twin-paradox.html): The twin paradox — one twin flies off at near-light speed and returns younger than the stay-at-home. Not a paradox: only the traveller ch... - [Unruh Effect](https://unseel.com/physics/unruh-effect.html): The Unruh effect: an accelerating observer sees the empty quantum vacuum as a warm thermal bath of particles at temperature T = ℏa/(2πck_... - [Virial Theorem](https://unseel.com/physics/virial-theorem.html): The virial theorem (Clausius 1870) relates the time-averaged kinetic energy ⟨T⟩ and potential energy ⟨V⟩ of a bound system. For a power-l... - [Viscosity](https://unseel.com/physics/viscosity.html): Viscosity is the property of a fluid that resists shear deformation. Newton's law μ = τ/(du/dy) defines it for ordinary liquids and gases... - [Viscous Fingering (Saffman-Taylor)](https://unseel.com/physics/viscous-fingering.html): Viscous fingering, the Saffman-Taylor instability, happens when a low-viscosity fluid pushes into a high-viscosity one in a thin gap: the... - [Vortex Ring](https://unseel.com/physics/vortex-ring.html): A vortex ring is a doughnut-shaped region of rotating fluid that carries itself forward — the smoke ring, the dolphin's bubble ring, the ... - [Vorticity](https://unseel.com/physics/vorticity.html): Vorticity is the curl of the velocity field, ω = ∇ × u — twice the local angular velocity of a fluid parcel. It measures spin inside a fl... - [Wave Function Collapse](https://unseel.com/physics/wave-function-collapse.html): Wave function collapse: in standard quantum mechanics, when a system in superposition |ψ⟩ = Σ c_n |n⟩ is measured in basis {|n⟩}, it &quo... - [Wave Interference](https://unseel.com/physics/interference.html): 3D two wave sources creating circular waves that overlap. Where crests meet crests: constructive interference (bright). Where crests meet... - [Wave Packet](https://unseel.com/physics/wave-packet.html): A wave packet is a group of waves of slightly different wavelengths that add up to one localized pulse. It travels at the group velocity ... - [Wave Properties](https://unseel.com/physics/wave-properties.html): 3D transverse wave with labeled wavelength, amplitude, and frequency. Increase frequency to see more cycles. Increase amplitude to see ta... - [Wave Speed](https://unseel.com/physics/wave-speed.html): 3D wave traveling along a rope. Tighter rope: faster wave. Heavier rope: slower wave. Show v = fλ with frequency and wavelength labeled. ... - [Wave-Particle Duality](https://unseel.com/physics/wave-particle-duality.html): 3D light behaving as a wave (interference pattern through double slit) and as a particle (photon hitting a detector as a single dot). Sam... - [Waveguides](https://unseel.com/physics/waveguides.html): A waveguide is a hollow metallic tube that confines electromagnetic waves above a cutoff frequency. Rectangular guides support TE and TM ... - [Weak Force](https://unseel.com/physics/weak-force.html): The weak force mediates beta decay via massive W and Z bosons (80, 91 GeV). Range ~10⁻¹⁸ m. Violates parity and CP. Unified with EM in el... - [Wien's Displacement Law](https://unseel.com/physics/wiens-displacement-law.html): Heat anything to incandescence and it begins to glow. The colour of that glow is not arbitrary — Wien's displacement law fixes the wavele... - [WKB Approximation](https://unseel.com/physics/wkb-approximation.html): WKB approximation: ψ(x) ≈ A·exp(±i∫p(x)dx/ℏ) where p(x) = √(2m(E−V)). Valid where wavelength varies slowly. Connects classical action to ... - [Work and Energy](https://unseel.com/physics/work-energy.html): 3D person pushing a box along a surface. Force arrow times distance equals work done. Energy transfers into the box as kinetic energy. Sh... - [Young's Modulus](https://unseel.com/physics/youngs-modulus.html): 3D material bar being stretched. Stress-strain graph builds: linear elastic region (springs back), yield point (permanent deformation beg... - [Zeeman Effect](https://unseel.com/physics/zeeman-effect.html): The Zeeman effect is the splitting of atomic spectral lines into multiple components when the atom is placed in an external magnetic fiel... ## Biology Life in all its forms — molecules, cells, ecosystems. 251 concepts. - [Biology index](https://unseel.com/biology.html): All biology concepts - [Abscisic Acid (ABA)](https://unseel.com/biology/abscisic-acid.html): Abscisic acid (ABA) is a sesquiterpenoid plant hormone that orchestrates the response to abiotic stress — most notably drought, salt, and... - [Action Potential](https://unseel.com/biology/action-potential.html): An action potential is a brief, all-or-nothing voltage spike that neurons use to send signals down their axons. The neuronal membrane nor... - [Active Transport](https://unseel.com/biology/active-transport.html): Active transport uses cellular energy (ATP) to move molecules across a membrane against their concentration gradient. The sodium-potassiu... - [Adaptive Radiation](https://unseel.com/biology/adaptive-radiation.html): Adaptive radiation is the rapid diversification of a single ancestral lineage into many descendant species occupying distinct ecological ... - [Allee Effect](https://unseel.com/biology/allee-effect.html): The Allee effect is positive density dependence: below a critical population density, per-capita growth rate falls and can turn negative,... - [Allometric Scaling](https://unseel.com/biology/allometry.html): Allometric scaling is how biological traits change with body size by power laws, not in proportion — metabolic rate scales as mass to the... - [Allopatric Speciation](https://unseel.com/biology/allopatric-speciation.html): Allopatric speciation is the formation of new species when populations are separated by a geographic barrier — a mountain rising, a river... - [Allosteric Regulation](https://unseel.com/biology/allosteric-regulation.html): Allosteric regulation is when binding at one site changes activity at a distant site by reshaping a multi-subunit protein. Cooperative su... - [Alternation of Generations](https://unseel.com/biology/alternation-of-generations.html): Alternation of generations is the plant and algal life cycle that swings between a multicellular haploid gametophyte (n), which makes gam... - [Alternative Splicing](https://unseel.com/biology/alternative-splicing.html): Alternative splicing is the process by which a single pre-mRNA gives rise to multiple mature mRNAs — and therefore multiple protein isofo... - [Antibody Structure](https://unseel.com/biology/antibody-structure.html): An antibody is a Y-shaped protein, about 150 kDa, built from two identical heavy chains and two identical light chains locked together by... - [Apoptosis](https://unseel.com/biology/apoptosis.html): Apoptosis is programmed cell death — an orderly, energy-dependent dismantling that lets a cell remove itself without spilling contents an... - [Aposematism](https://unseel.com/biology/aposematism.html): Aposematism is honest advertising: a toxic or dangerous prey animal pairs a costly defense (poison, venom, sting, foul taste) with a loud... - [ATP Synthase](https://unseel.com/biology/atp-synthase.html): ATP synthase is a membrane enzyme that uses a proton gradient to spin a rotary motor and forge ATP from ADP and phosphate — your cell's p... - [Autophagy](https://unseel.com/biology/autophagy.html): Autophagy is the regulated self-degradation of cellular components — proteins, lipids, whole organelles — through delivery to the lysosom... - [B Cell Affinity Maturation](https://unseel.com/biology/b-cell-affinity-maturation.html): Affinity maturation is Darwinian evolution at warp speed inside lymph nodes. After a B cell finds its antigen and migrates into a germina... - [Bacteria](https://unseel.com/biology/bacteria-structure.html): Bacteria are single-celled prokaryotes that lack a nucleus and membrane-bound organelles but possess a cell wall, plasma membrane, riboso... - [Bacterial Chemotaxis](https://unseel.com/biology/bacterial-chemotaxis.html): Bacterial chemotaxis is how bacteria bias a random walk of runs and tumbles to swim up a chemical gradient toward attractants like sugars... - [Bacterial Conjugation](https://unseel.com/biology/bacterial-conjugation.html): Bacterial conjugation is the direct, contact-dependent transfer of DNA from a donor bacterium to a recipient through a pilus-built bridge... - [Bacterial Sporulation](https://unseel.com/biology/bacterial-sporulation.html): Bacterial sporulation is how starving cells like Bacillus build a near-indestructible dormant endospore — asymmetric division, engulfment... - [Bacteriophage](https://unseel.com/biology/bacteriophage.html): The most abundant entity on Earth — 10³¹ phages. Injects its DNA into bacteria, hijacks machinery, bursts out with hundreds of progeny. P... - [Baroreceptor Reflex](https://unseel.com/biology/baroreceptor-reflex.html): The baroreceptor reflex is the rapid negative-feedback loop that buffers beat-to-beat blood pressure. Stretch-sensitive nerve endings in ... - [Batesian & Mullerian Mimicry](https://unseel.com/biology/batesian-mimicry.html): Batesian mimicry is when a harmless species evolves to copy the warning signals (aposematism) of a dangerous one to dodge predators, whil... - [Beta-Oxidation](https://unseel.com/biology/beta-oxidation.html): Beta-oxidation is the mitochondrial pathway that breaks fatty acids down two carbons at a time, releasing acetyl-CoA, NADH and FADH2 to p... - [Binary Fission](https://unseel.com/biology/binary-fission.html): Binary fission is how a bacterium copies its circular chromosome, splits it in two, and pinches into two identical daughter cells — as fa... - [Biofilm](https://unseel.com/biology/biofilm.html): Bacteria coat surfaces, build a polysaccharide matrix, communicate via quorum sensing, and form 3D structured communities. They resist an... - [Biological Clock](https://unseel.com/biology/biological-clock.html): The SCN in the hypothalamus keeps time via a 24-hour feedback loop of CLOCK/BMAL1 and PER/CRY genes. Cortisol peaks in morning, melatonin... - [Bioluminescence](https://unseel.com/biology/bioluminescence.html): Bioluminescence is the production of visible light by living organisms through a chemical reaction in which the enzyme luciferase oxidize... - [Biomagnification](https://unseel.com/biology/biomagnification.html): Biomagnification is the increasing concentration of a persistent toxin at each higher trophic level, so top predators carry the heaviest ... - [Blood-Brain Barrier](https://unseel.com/biology/blood-brain-barrier.html): The blood-brain barrier is a highly selective wall that seals the brain's roughly 400 miles of capillaries off from the bloodstream. It i... - [C3 Photosynthesis](https://unseel.com/biology/c3-photosynthesis.html): C3 photosynthesis is the original carbon-fixation pathway used by roughly 85 percent of land plant species, including wheat, rice, soybea... - [C4 & CAM Photosynthesis](https://unseel.com/biology/c4-cam-plants.html): C4 plants (corn, sugarcane) concentrate CO₂ spatially between cell types. CAM plants (cacti) concentrate it temporally — storing at night... - [Calcium Signaling](https://unseel.com/biology/calcium-signaling.html): Calcium signaling is how cells use brief spikes of cytosolic Ca2+ as a second messenger to trigger muscle contraction, memory, secretion,... - [Carbon Cycle](https://unseel.com/biology/carbon-cycle.html): Carbon moves among atmosphere, oceans, biosphere, soils, and fossil fuels. Photosynthesis, respiration, decomposition, and combustion dri... - [Cardiac Cycle](https://unseel.com/biology/cardiac-cycle.html): The cardiac cycle is the repeating sequence of squeeze and release that the heart performs to push blood through the body. At a resting r... - [Carrying Capacity](https://unseel.com/biology/carrying-capacity.html): Carrying capacity (K) is the maximum population that an environment can sustain indefinitely given its food, water, shelter, and other re... - [Casparian Strip](https://unseel.com/biology/casparian-strip.html): The Casparian strip is a band of lignin (reinforced by later suberin) impregnated into the radial and transverse walls of root endodermal... - [Cell Competition](https://unseel.com/biology/cell-competition.html): Cell competition is a quality-control process where fitter cells sense and eliminate less-fit neighbors by inducing their apoptosis, then... - [Cell Cycle](https://unseel.com/biology/cell-cycle.html): The cell cycle is the ordered sequence of events that takes a cell from one division to the next. Four phases — G1, S, G2, M — driven by ... - [Cell Junctions](https://unseel.com/biology/cell-junctions.html): Cell junctions are protein complexes that hold neighboring cells together and regulate what passes between them. Five major types — tight... - [Cell Polarity](https://unseel.com/biology/cell-polarity.html): Cell polarity is the asymmetric organisation of a cell into distinct apical and basolateral (or front-and-back) domains, established and ... - [Cellular Senescence](https://unseel.com/biology/cellular-senescence.html): Cellular senescence is a permanent growth arrest in which a stressed cell stops dividing but stays alive, secreting inflammatory SASP fac... - [Centrosome and Spindle Apparatus](https://unseel.com/biology/centrosome-spindle.html): The centrosome is the cell's main microtubule-organizing center — two centrioles wrapped in pericentriolar material studded with γ-tubuli... - [Chaperone Proteins](https://unseel.com/biology/chaperone-proteins.html): Chaperone proteins are ATP-driven folding helpers that prevent aggregation and rescue misfolded clients. Hsp70 binds short hydrophobic st... - [Character Displacement](https://unseel.com/biology/character-displacement.html): Character displacement is the evolutionary divergence of traits in two species where they coexist, driven by competition. Brown & Wilson,... - [Chemiosmosis](https://unseel.com/biology/chemiosmosis.html): Chemiosmosis is how cells turn a proton gradient into ATP: an electron transport chain pumps H+ across a membrane to build a proton-motiv... - [Chloroplast](https://unseel.com/biology/chloroplast.html): Chloroplasts are double-membrane organelles in plant cells that convert light energy into chemical energy through photosynthesis. They co... - [Clathrin-Coated Vesicles](https://unseel.com/biology/clathrin-coated-vesicles.html): Clathrin-coated vesicles are ~100 nm membrane carriers built from a self-assembling lattice of three-legged triskelions. Each triskelion ... - [Clonal Selection](https://unseel.com/biology/clonal-selection.html): Clonal selection is the principle that each lymphocyte is born with one randomly generated antigen receptor, and an invading antigen sele... - [Cochlea & Hearing](https://unseel.com/biology/cochlea-hearing.html): The cochlea is a fluid-filled spiral, about 35 mm long uncoiled with ~3,500 inner and ~12,000 outer hair cells, that physically sorts sou... - [Coevolution](https://unseel.com/biology/coevolution.html): Predator-prey arms races: cheetah and gazelle both get faster. Mutualism: orchids and their moths match shapes. When species interact for... - [Coevolutionary Arms Race](https://unseel.com/biology/arms-race-coevolution.html): A coevolutionary arms race is reciprocal escalation between species — predator and prey, host and parasite, male and female — where each ... - [Competitive Exclusion Principle](https://unseel.com/biology/competitive-exclusion.html): The competitive exclusion principle (Gause's law) states that two species competing for the exact same limiting resource cannot coexist i... - [Complement System](https://unseel.com/biology/complement-system.html): Complement is a cascade of about 30 plasma proteins that opsonize pathogens for phagocytosis, recruit neutrophils via small chemotactic f... - [Convergent Evolution](https://unseel.com/biology/convergent-evolution.html): Wings evolved independently in insects, pterosaurs, birds, and bats. Camera eyes in vertebrates and octopuses. When physics demands a spe... - [Countercurrent Exchange](https://unseel.com/biology/countercurrent-exchange.html): Countercurrent exchange is the transfer of heat or solutes between two fluids flowing in opposite directions, sustaining a gradient along... - [CRISPR-Cas Bacterial Immunity](https://unseel.com/biology/crispr-cas-immunity.html): CRISPR-Cas is the adaptive immune system bacteria and archaea use to fight viruses. When a bacteriophage injects its DNA, the Cas1-Cas2 c... - [Crossing Over](https://unseel.com/biology/crossing-over.html): Crossing over is the reciprocal exchange of DNA between homologous chromosomes during meiosis I, swapping matching segments at structures... - [Cytoskeleton](https://unseel.com/biology/cytoskeleton.html): The cell's scaffolding, highway, and muscles. Actin drives shape and movement; microtubules haul cargo via kinesin/dynein; intermediate f... - [Cytotoxic T Cell Killing](https://unseel.com/biology/cytotoxic-t-cell.html): A cytotoxic T cell (CD8+ killer T cell) patrols the body inspecting MHC class I molecules on every nucleated cell. When its T-cell recept... - [DNA Methylation](https://unseel.com/biology/dna-methylation.html): DNA methylation is the covalent addition of a methyl group (–CH₃) to the 5-position of a cytosine ring, producing 5-methylcytosine. In ma... - [DNA Polymerase](https://unseel.com/biology/dna-polymerase.html): DNA polymerase is the enzyme that synthesizes DNA from a template, extending a primer 5' to 3' by adding deoxynucleoside triphosphates an... - [DNA Repair](https://unseel.com/biology/dna-repair.html): DNA repair is the system of pathways that detects and fixes chemical damage to the genome. A single human cell sustains tens of thousands... - [DNA Replication](https://unseel.com/biology/dna-replication.html): Helicase unwinds the double helix; DNA polymerase copies each template. The leading strand flows continuously; the lagging strand is buil... - [DNA Sequencing](https://unseel.com/biology/dna-sequencing.html): DNA sequencing is reading the exact order of A, C, G and T bases along a strand. From Sanger chain-terminators to nanopore — methods, cos... - [DNA Supercoiling](https://unseel.com/biology/dna-supercoiling.html): DNA supercoiling is the over- or under-winding of the double helix described by the topological equation Lk = Tw + Wr, where the linking ... - [DNA Transcription](https://unseel.com/biology/transcription.html): Transcription is the process by which RNA polymerase reads a DNA template strand and synthesizes a complementary messenger RNA molecule. ... - [Double Fertilization](https://unseel.com/biology/double-fertilization.html): Double fertilization is the defining sexual event of flowering plants: a pollen tube delivers two sperm into the embryo sac, one fuses wi... - [Echolocation](https://unseel.com/biology/echolocation.html): Echolocation is the biological sonar that bats, toothed whales, and a few other animals use to perceive the world with sound. The animal ... - [Ecological Succession](https://unseel.com/biology/ecological-succession.html): After volcanic eruption: bare rock → lichens → mosses → grasses → shrubs → forest. Primary succession takes 500+ years. Secondary success... - [Edge Effects](https://unseel.com/biology/edge-effects.html): Edge effects are the changes in microclimate, species, and biology that occur at habitat boundaries — where forest meets field — penetrat... - [Electron Transport Chain](https://unseel.com/biology/electron-transport-chain.html): The electron transport chain is a series of protein complexes embedded in the inner mitochondrial membrane that transfer electrons from N... - [Embryonic Induction](https://unseel.com/biology/embryonic-induction.html): Embryonic induction is when one tissue secretes signals that instruct an adjacent competent tissue to change its developmental fate — how... - [Endocytosis & Exocytosis](https://unseel.com/biology/endocytosis-exocytosis.html): Endocytosis engulfs extracellular material by folding the plasma membrane inward to form vesicles, while exocytosis fuses vesicles with t... - [Endoplasmic Reticulum](https://unseel.com/biology/endoplasmic-reticulum.html): The endoplasmic reticulum is a vast membrane network inside cells that folds and transports proteins (rough ER) and synthesizes lipids (s... - [Endosymbiotic Theory](https://unseel.com/biology/endosymbiotic-theory.html): 1.5 billion years ago, a primitive eukaryote engulfed an aerobic bacterium — and instead of digesting it, kept it. Today's mitochondria s... - [Enzymes](https://unseel.com/biology/enzymes.html): Enzymes are proteins that dramatically accelerate chemical reactions by lowering the activation energy required. Each enzyme has a unique... - [Epigenetics](https://unseel.com/biology/epigenetics.html): Epigenetics studies heritable changes in gene expression that occur without altering the DNA sequence itself. Chemical tags like methyl g... - [Epistasis](https://unseel.com/biology/epistasis.html): Epistasis is when one gene masks or modifies the effect of another gene, so the genotype at one locus controls whether a second locus is ... - [Evidence for Evolution](https://unseel.com/biology/evolution-evidence.html): Multiple independent lines of evidence support evolution: the fossil record shows transitional forms, comparative anatomy reveals homolog... - [Evolutionarily Stable Strategy](https://unseel.com/biology/evolutionarily-stable-strategy.html): An evolutionarily stable strategy (ESS) is a behavior that, once common in a population, cannot be invaded by any rare alternative — game... - [Extracellular Matrix](https://unseel.com/biology/extracellular-matrix.html): The extracellular matrix (ECM) is the protein-and-polysaccharide scaffold that surrounds cells in animal tissues — fibrous proteins (coll... - [Facilitated Diffusion](https://unseel.com/biology/facilitated-diffusion.html): Facilitated diffusion is the passive movement of molecules down their gradient through membrane proteins — channels and carriers — withou... - [Fermentation](https://unseel.com/biology/fermentation.html): Fermentation is an anaerobic metabolic pathway that regenerates NAD+ from NADH so glycolysis can continue producing ATP without oxygen. L... - [Fitness Landscape](https://unseel.com/biology/fitness-landscape.html): A fitness landscape is a map linking each genotype to its reproductive success, where evolution climbs toward adaptive peaks but can get ... - [Flagella and Cilia](https://unseel.com/biology/flagella-cilia.html): Flagella and cilia are whip-like cell appendages that beat to push fluid past the cell or to propel the cell through fluid. The same word... - [Flower Anatomy](https://unseel.com/biology/flower-anatomy.html): A flower is a short, specialized shoot whose leaves have been modified into reproductive organs and arranged in concentric whorls — typic... - [Focal Adhesions](https://unseel.com/biology/focal-adhesions.html): Focal adhesions are integrin-anchored signaling hubs that physically tether the actin cytoskeleton to the extracellular matrix. Each adhe... - [Food Chains & Webs](https://unseel.com/biology/food-chain.html): A food chain traces the flow of energy from producers through primary consumers, secondary consumers, and top predators. Real ecosystems ... - [Founder Effect](https://unseel.com/biology/founder-effect.html): The founder effect is the loss of genetic variation that occurs when a new population is established by a small number of individuals fro... - [Frequency-Dependent Selection](https://unseel.com/biology/frequency-dependent-selection.html): Frequency-dependent selection is when a trait's fitness depends on how common it is — under negative FDS, the rarer morph wins, so freque... - [G Protein-Coupled Receptors (GPCRs)](https://unseel.com/biology/gpcr.html): GPCRs are a superfamily of seven-transmembrane receptors that translate extracellular ligands — light, hormones, neurotransmitters, odora... - [Gas Exchange](https://unseel.com/biology/gas-exchange.html): Gas exchange is the passive diffusion of O2 and CO2 across a thin, wet respiratory membrane down partial-pressure gradients — in alveoli,... - [Gastrulation](https://unseel.com/biology/gastrulation.html): The blastula folds inward to form three primary tissue layers: ectoderm (skin/nerves), mesoderm (muscle/bone/blood), and endoderm (gut/lu... - [Gel Electrophoresis](https://unseel.com/biology/gel-electrophoresis.html): Gel electrophoresis sorts DNA, RNA, or protein fragments by size using an electric field that pulls negatively charged molecules through ... - [Gene Drive](https://unseel.com/biology/gene-drive.html): A gene drive is an engineered genetic element that biases its own inheritance so it passes to far more than the Mendelian 50% of offsprin... - [Gene Expression](https://unseel.com/biology/gene-expression.html): Transcription factors bind enhancers thousands of bases away. DNA loops to bring them near the promoter. The right combination recruits R... - [Gene Flow](https://unseel.com/biology/gene-flow.html): Gene flow is the transfer of alleles between populations by migrating individuals or gametes. It homogenizes allele frequencies and oppos... - [Genetic Bottleneck](https://unseel.com/biology/genetic-bottleneck.html): A genetic bottleneck is a sharp population crash that strips a species of much of its allelic variation, leaving the survivors and their ... - [Genetic Code](https://unseel.com/biology/genetic-code.html): Three DNA bases specify one amino acid. 64 possible codons, 20 amino acids used — redundancy with the third position often flexible (wobb... - [Genetic Drift](https://unseel.com/biology/genetic-drift.html): Genetic drift is the random change in allele frequencies between generations driven by sampling effects in finite populations. The Wright... - [Genomic Imprinting](https://unseel.com/biology/genomic-imprinting.html): Genomic imprinting is an epigenetic phenomenon in which roughly 150 mammalian genes are expressed only from the maternal or only from the... - [Germ Layers](https://unseel.com/biology/germ-layers.html): Germ layers are the three primary sheets of cells — ectoderm, mesoderm, and endoderm — formed during gastrulation that give rise to every... - [Gluconeogenesis](https://unseel.com/biology/gluconeogenesis.html): Gluconeogenesis is the synthesis of glucose from non-carbohydrate precursors like lactate, amino acids, and glycerol — the body's way to ... - [Glycolysis](https://unseel.com/biology/glycolysis.html): Glycolysis is the 10-step pathway in the cell's cytoplasm that breaks one glucose molecule into two pyruvate molecules, capturing energy ... - [Golgi Apparatus](https://unseel.com/biology/golgi-apparatus.html): The cell's post office. Proteins arrive from the ER, pass through stacked cisternae, get modified with sugars and tags, and are sorted in... - [Gram-Positive vs Gram-Negative Bacteria](https://unseel.com/biology/gram-positive-vs-negative.html): The Gram stain, devised by the Danish physician Hans Christian Gram in Berlin in 1884, splits almost all bacteria into two cell-envelope ... - [Hardy-Weinberg](https://unseel.com/biology/hardy-weinberg.html): The null model of evolution. Given five assumptions — no mutation, no selection, no migration, random mating, infinite population — genot... - [Helicase and Topoisomerase](https://unseel.com/biology/helicase-topoisomerase.html): Helicases are ATP-dependent motor proteins that unwind double-stranded DNA, separating the two strands at ~1000 bp/s in E. coli (DnaB) or... - [Hemoglobin & the Bohr Effect](https://unseel.com/biology/hemoglobin-oxygen-curve.html): Hemoglobin is a 64.5 kDa tetramer whose four heme-iron sites bind O2 cooperatively, producing an S-shaped (sigmoidal) saturation curve wi... - [Heterozygote Advantage](https://unseel.com/biology/heterozygote-advantage.html): Heterozygote advantage (overdominance) is when carrying two different alleles at a locus beats either homozygote, so natural selection ac... - [Histone Modification](https://unseel.com/biology/histone-modification.html): Histone modifications are reversible chemical tags on the unstructured tails of the histone proteins that DNA is wrapped around. Acetylat... - [Homeostasis](https://unseel.com/biology/homeostasis.html): Homeostasis is the process by which organisms maintain stable internal conditions despite changing external environments. Through negativ... - [Homologous vs Analogous Structures](https://unseel.com/biology/homologous-analogous.html): Homologous vs analogous structures: homologous traits share a common ancestor and inner blueprint; analogous traits share only a function... - [Horizontal Gene Transfer](https://unseel.com/biology/horizontal-gene-transfer.html): Horizontal gene transfer (HGT) — also called lateral gene transfer — is the movement of genetic material between organisms by mechanisms ... - [How Antibiotics Work](https://unseel.com/biology/antibiotic-mechanisms.html): How antibiotics work: drugs that exploit differences between bacterial and human cells to kill or stall bacteria — hitting the cell wall,... - [How CRISPR Edits DNA](https://unseel.com/biology/crispr-mechanism.html): CRISPR-Cas9 uses a guide RNA to locate a specific DNA sequence, then the Cas9 enzyme cuts both strands of the double helix at that precis... - [Hox Genes](https://unseel.com/biology/hox-genes.html): Hox genes are a family of homeobox-containing transcription factors that label segments of the body along the head-to-tail axis. Drosophi... - [Inclusive Fitness](https://unseel.com/biology/inclusive-fitness.html): Inclusive fitness counts an individual's reproductive success as her own offspring (direct fitness) plus relatives' offspring weighted by... - [Incomplete Dominance & Codominance](https://unseel.com/biology/incomplete-dominance.html): Incomplete dominance and codominance are inheritance patterns where neither allele fully masks the other — giving a blended intermediate ... - [Inflammation](https://unseel.com/biology/inflammation.html): Inflammation is the body's rapid first response to injury or infection: damaged tissue and resident sentinel cells (mast cells, macrophag... - [Innate vs Adaptive Immunity](https://unseel.com/biology/innate-vs-adaptive-immunity.html): Vertebrate immunity is built in two layers. The innate arm reacts in minutes to hours using a fixed germline-encoded toolkit — about 10 T... - [Insect Metamorphosis](https://unseel.com/biology/metamorphosis.html): Insect metamorphosis is the hormone-controlled rebuild that turns a larva into a structurally different adult. Pulses of the steroid horm... - [Invasive Species](https://unseel.com/biology/invasive-species.html): An invasive species is a non-native organism whose introduction into an ecosystem causes (or is likely to cause) ecological or economic h... - [Island Biogeography](https://unseel.com/biology/island-biogeography.html): Island biogeography is the theory that the number of species on an island is set by a dynamic balance between two opposing forces — immig... - [Keystone Species](https://unseel.com/biology/keystone-species.html): A keystone species exerts disproportionate ecosystem impact relative to its abundance — remove it and community structure collapses. Robe... - [Kin Selection](https://unseel.com/biology/kin-selection.html): Kin selection is evolution by helping relatives — alleles for altruism toward kin spread when the recipient's coefficient of relatedness ... - [Kinetochore & Spindle Attachment](https://unseel.com/biology/kinetochore.html): The kinetochore is a multilayered protein machine — roughly 100 distinct proteins built on the centromere of each sister chromatid during... - [Krebs Cycle](https://unseel.com/biology/krebs-cycle.html): The citric acid cycle is a series of chemical reactions in the mitochondrial matrix that breaks down acetyl-CoA to produce electron carri... - [Light Reactions](https://unseel.com/biology/photosynthesis-light-reactions.html): The light-dependent reactions of photosynthesis occur in the thylakoid membranes of chloroplasts, where chlorophyll absorbs photons to sp... - [Lignin and Cellulose](https://unseel.com/biology/lignin-cellulose.html): Cellulose is the most abundant polysaccharide on Earth — a long unbranched chain of β(1→4)-linked glucose units that bundles into crystal... - [Linkage Disequilibrium](https://unseel.com/biology/linkage-disequilibrium.html): Linkage disequilibrium (LD) is the non-random co-occurrence of alleles at two or more loci, measured as D = pAB − pA·pB and decaying each... - [Lipid Bilayer](https://unseel.com/biology/lipid-bilayer.html): Two sheets of phospholipids self-assemble tail-to-tail in water. Heads face out, tails tuck in. The hydrophobic core is a barrier to pola... - [Liquid-Liquid Phase Separation](https://unseel.com/biology/liquid-liquid-phase-separation.html): Liquid-liquid phase separation (LLPS) is the demixing of multivalent intrinsically disordered proteins and RNA into membraneless biomolec... - [Logistic Population Growth](https://unseel.com/biology/logistic-population-growth.html): Logistic population growth is the model that captures what happens when exponential reproduction runs into resource limits. A growing pop... - [Long-Term Potentiation](https://unseel.com/biology/long-term-potentiation.html): Long-term potentiation (LTP) is the long-lasting strengthening of a synapse that follows brief, high-frequency activity. The trigger is t... - [Lotka-Volterra Equations](https://unseel.com/biology/lotka-volterra.html): The Lotka-Volterra equations are paired ordinary differential equations that capture how two interacting species drive each other's numbe... - [Lysosome](https://unseel.com/biology/lysosome.html): Acidic vesicles packed with 60+ hydrolase enzymes. Break down damaged organelles, debris, and recycled molecules into reusable building b... - [Lytic vs Lysogenic Cycle](https://unseel.com/biology/lytic-vs-lysogenic.html): Bacteriophages — viruses that infect bacteria — replicate via two distinct life cycles. The lytic cycle commandeers the host's transcript... - [Magnetoreception](https://unseel.com/biology/magnetoreception.html): Magnetoreception is the ability of animals to perceive Earth's magnetic field (25–65 µT) and use it for orientation, navigation, and migr... - [Mass Extinction Events](https://unseel.com/biology/mass-extinction.html): A mass extinction is a geologically brief interval in which more than three-quarters of all species disappear. Five canonical events shap... - [Meiosis](https://unseel.com/biology/meiosis.html): Meiosis is the specialised cell division that produces haploid gametes from diploid germ cells via one round of DNA replication followed ... - [Mendel's Laws](https://unseel.com/biology/mendels-laws.html): Mendel's laws are the two foundational rules of classical genetics — the law of segregation (each parent transmits one of its two alleles... - [Metapopulation](https://unseel.com/biology/metapopulation.html): A metapopulation is a set of local populations on discrete habitat patches connected by migration, where the regional persistence of the ... - [MHC Class I and Class II](https://unseel.com/biology/mhc-i-ii.html): Major histocompatibility complex (MHC) molecules are cell-surface peptide displays — billboards that show fragments of every protein the ... - [Michaelis-Menten Kinetics](https://unseel.com/biology/michaelis-menten-kinetics.html): Michaelis-Menten kinetics is the rate equation v = V_max·[S]/(K_m + [S]) that describes how a single-substrate enzyme responds to ... - [MicroRNAs](https://unseel.com/biology/micrornas.html): MicroRNAs (miRNAs) are ~22-nucleotide endogenous non-coding RNAs that regulate gene expression by base-pairing with messenger RNA — typic... - [Mismatch Repair](https://unseel.com/biology/mismatch-repair.html): Mismatch repair (MMR) scans newly synthesized DNA for base-pair mismatches and small insertion-deletion loops, excises the daughter-stran... - [Mitochondrial DNA](https://unseel.com/biology/mitochondrial-dna.html): Mitochondrial DNA is a small circular genome — 16,569 base pairs in humans — that lives inside mitochondria and encodes 37 genes: 13 prot... - [Mitochondrial Dynamics](https://unseel.com/biology/mitochondrial-dynamics.html): Mitochondrial dynamics is the constant cycle of fission and fusion that remodels the mitochondrial network — in a typical mouse embryonic... - [Mitosis](https://unseel.com/biology/mitosis.html): Watch a cell divide through prophase, metaphase, anaphase, and telophase — the process that builds and repairs every living organism. - [Molecular Clock](https://unseel.com/biology/molecular-clock.html): The molecular clock uses the steady accumulation of neutral nucleotide and amino-acid substitutions in DNA and protein sequences to estim... - [Morphogen Gradients](https://unseel.com/biology/morphogen-gradients.html): A morphogen gradient is a spatial concentration profile of a signaling molecule that assigns cell fates by threshold. The morphogen is pr... - [Motor Proteins (Kinesin & Dynein)](https://unseel.com/biology/motor-proteins.html): Motor proteins are two-headed molecular machines that haul cargo along microtubule tracks by walking hand-over-hand, taking 8 nm steps an... - [mRNA Capping](https://unseel.com/biology/mrna-capping.html): The 5' cap is a 7-methylguanosine (m7G) attached to the first nucleotide of nascent eukaryotic mRNA through an unusual 5'-5' triphosphate... - [mRNA Vaccines](https://unseel.com/biology/mrna-vaccine.html): mRNA vaccines deliver synthetic messenger RNA into cells, instructing ribosomes to produce a viral protein (like a spike protein) that tr... - [Mutualism vs Parasitism](https://unseel.com/biology/mutualism-parasitism.html): Mutualism is a +/+ interaction where both species benefit; parasitism is +/− where one species benefits at the other's expense. The bound... - [Mycorrhizae](https://unseel.com/biology/mycorrhizae.html): Mycorrhizae are symbiotic associations between plant roots and soil fungi. Roughly 80% of land plant species form them. The fungus extend... - [Natural Selection](https://unseel.com/biology/natural-selection.html): Darwin's three ingredients. Variation exists, is heritable, and affects reproductive success. Over generations, favored traits spread thr... - [Nephron & Glomerular Filtration](https://unseel.com/biology/nephron-filtration.html): The nephron is the kidney's filtering unit: a glomerulus pushes blood across a three-layer barrier under ~10 mmHg net pressure, producing... - [Neural Tube Formation](https://unseel.com/biology/neural-tube-formation.html): Neural tube formation, or neurulation, is the process that converts a flat sheet of cells — the neural plate — into the hollow tube that ... - [Neuromuscular Junction](https://unseel.com/biology/neuromuscular-junction.html): The neuromuscular junction is the chemical synapse where a motor neuron commands a muscle fiber to contract. One nerve action potential o... - [Niche Partitioning](https://unseel.com/biology/niche-partitioning.html): Niche partitioning is the division of resources, space, time, or trophic role among species that would otherwise compete head-on. It is t... - [Nitrogen Cycle](https://unseel.com/biology/nitrogen-cycle.html): The nitrogen cycle converts atmospheric nitrogen gas into forms usable by living organisms through nitrogen fixation, nitrification, assi... - [Nitrogen Fixation](https://unseel.com/biology/nitrogen-fixation.html): Nitrogen fixation reduces atmospheric N₂ to ammonia (NH₃), the chemical step that lets life use Earth's enormous nitrogen reservoir. Biol... - [Nondisjunction & Aneuploidy](https://unseel.com/biology/nondisjunction.html): Nondisjunction is the failure of chromosomes to separate during meiosis or mitosis, producing aneuploid cells with extra or missing chrom... - [Notch Signaling](https://unseel.com/biology/notch-signaling.html): Notch is a short-range cell-cell signaling pathway that activates only when two cells are physically touching. A Notch receptor on one ce... - [Nuclear Pore](https://unseel.com/biology/nuclear-pore.html): Thousands of Nuclear Pore Complexes perforate the nuclear envelope. Small molecules diffuse freely; large ones need karyopherin escorts t... - [Nucleosome](https://unseel.com/biology/nucleosome.html): A nucleosome is the basic packaging unit of every eukaryotic genome. 147 base pairs of double-stranded DNA wrap 1.65 left-handed turns ar... - [Okazaki Fragments](https://unseel.com/biology/okazaki-fragments.html): Okazaki fragments are short, RNA-primed DNA pieces synthesized on the lagging strand during DNA replication. In E. coli they are 1000-200... - [Operon](https://unseel.com/biology/operon.html): Bacterial gene regulation at its simplest. Without lactose, a repressor blocks the operator. Add lactose, repressor falls off, RNA polyme... - [Optimal Foraging Theory](https://unseel.com/biology/optimal-foraging.html): Optimal foraging theory predicts that animals forage so as to maximize their net rate of energy intake — energy gained minus energy spent... - [Osmoregulation](https://unseel.com/biology/osmoregulation.html): Osmoregulation is how organisms keep internal salt and water concentrations stable against the environment. See how freshwater and saltwa... - [Osmosis & Tonicity](https://unseel.com/biology/osmosis-tonicity.html): Osmosis is the net diffusion of water across a semipermeable membrane toward higher solute concentration. Tonicity predicts whether a cel... - [Pedigree Analysis](https://unseel.com/biology/pedigree-analysis.html): Pedigree analysis is reading a family tree of squares and circles to deduce whether a trait is dominant, recessive, or X-linked — and who... - [Pentose Phosphate Pathway](https://unseel.com/biology/pentose-phosphate-pathway.html): The pentose phosphate pathway is a glucose-6-phosphate side route that makes NADPH for biosynthesis and ribose-5-phosphate for DNA and RN... - [Peroxisome](https://unseel.com/biology/peroxisome.html): Peroxisomes are single-membrane organelles that run reactions producing hydrogen peroxide as an intermediate. They oxidize very-long-chai... - [Phosphorus Cycle](https://unseel.com/biology/phosphorus-cycle.html): The phosphorus cycle is the slow movement of phosphate from rock through soil, water and organisms back to sediment — the one major nutri... - [Photoperiodism](https://unseel.com/biology/photoperiodism.html): Photoperiodism is how plants measure day length — really night length — to time flowering and other seasonal events using the pigment phy... - [Photorespiration](https://unseel.com/biology/photorespiration.html): Photorespiration is the wasteful pathway plants run when the enzyme RuBisCO fixes molecular oxygen instead of carbon dioxide, producing t... - [Photosynthesis Dark Reactions](https://unseel.com/biology/photosynthesis-dark.html): In the stroma, RuBisCO attaches CO₂ to RuBP, creating 3-PGA. ATP and NADPH from the light reactions power conversion to G3P. Three turns ... - [Phototransduction](https://unseel.com/biology/phototransduction.html): Phototransduction is the process by which a photoreceptor converts light into an electrical signal. A single photon isomerizes 11-cis-ret... - [Phylogenetic Trees](https://unseel.com/biology/phylogenetic-tree.html): A phylogenetic tree is a branching diagram showing the evolutionary relationships among species, where shared ancestry is read at the nod... - [Plant Hormones (Auxin)](https://unseel.com/biology/plant-hormones-auxin.html): Auxin — chiefly indole-3-acetic acid (IAA) — is the central plant hormone for growth direction and patterning. Unique among phytohormones... - [Plant Secondary Metabolites](https://unseel.com/biology/secondary-metabolites.html): Plant secondary metabolites are compounds like alkaloids and terpenes that plants make for defense, not growth — caffeine, nicotine, morp... - [Plasmid](https://unseel.com/biology/plasmid.html): A plasmid is a small circular DNA molecule that replicates independently of the bacterial chromosome. Plasmids carry the genes that bacte... - [Plasmodesmata](https://unseel.com/biology/plasmodesmata.html): Plasmodesmata are membrane-lined channels approximately 50 nanometers in diameter that traverse plant cell walls, joining the cytoplasm a... - [Pollination](https://unseel.com/biology/pollination.html): Pollination is the transfer of pollen from a flower's anther to a stigma — the act that precedes fertilization in flowering plants. Becau... - [Polygenic Inheritance](https://unseel.com/biology/polygenic-inheritance.html): Polygenic inheritance is when many genes each add a small effect to one trait, producing continuous variation like height or skin color —... - [Polymerase Chain Reaction](https://unseel.com/biology/pcr-amplification.html): The polymerase chain reaction (PCR) is a method that copies one DNA target into billions by cycling temperature: denature at 95°C, anneal... - [Polyploidy & Hybrid Speciation](https://unseel.com/biology/polyploidy-speciation.html): Polyploidy is the possession of more than two complete sets of chromosomes, and it can create a brand-new species in a single generation ... - [Predator-Prey Cycles](https://unseel.com/biology/predator-prey-cycles.html): Predator-prey cycles are coupled oscillations in species abundance: prey grow, predators follow, prey crash, predators starve, prey rebou... - [Primary Productivity](https://unseel.com/biology/primary-productivity.html): Primary productivity is the rate at which producers convert sunlight or chemical energy into organic biomass. GPP is the gross total; NPP... - [Proteasome](https://unseel.com/biology/proteasome.html): The 26S proteasome is a 2.5-megadalton barrel-shaped protease that destroys polyubiquitinated proteins. It consists of a 20S catalytic co... - [Protein Domains & Motifs](https://unseel.com/biology/protein-domains.html): A protein domain is a compact, independently folding module of ~50-250 amino acids that carries one function. Motifs are smaller recurrin... - [Protein Folding](https://unseel.com/biology/protein-folding.html): From linear amino-acid chain to functional 3D shape. Secondary α-helices and β-sheets form, then fold into tertiary globules, and finally... - [Punctuated Equilibrium](https://unseel.com/biology/punctuated-equilibrium.html): Punctuated equilibrium is the model proposed by Niles Eldredge and Stephen Jay Gould (1972) that most evolutionary change happens in geol... - [Quantitative Trait Loci (QTL)](https://unseel.com/biology/quantitative-trait-loci.html): A quantitative trait locus (QTL) is a region of the genome where allelic variation contributes to a continuous phenotype — height, blood ... - [Quorum Sensing](https://unseel.com/biology/quorum-sensing.html): Quorum sensing is bacterial cell-cell communication based on the release and detection of small diffusible signal molecules called autoin... - [r vs K Selection](https://unseel.com/biology/r-vs-k-selection.html): r/K selection theory categorizes species along a continuum from high-r strategists (many cheap fast-developing offspring, little parental... - [Rapid Plant Movement (Venus Flytrap)](https://unseel.com/biology/venus-flytrap.html): The Venus flytrap (Dionaea muscipula) snaps its hinged leaf shut in about 100 milliseconds without any muscles or nerves. Touching one of... - [Receptor Tyrosine Kinases](https://unseel.com/biology/tyrosine-kinase.html): Receptor tyrosine kinases (RTKs) are single-pass transmembrane receptors that dimerize on ligand binding, trans-autophosphorylate their c... - [Recombinant DNA](https://unseel.com/biology/recombinant-dna.html): Cut two DNAs at matching sites with restriction enzymes, ligate them together, transform into bacteria. The foundation of biotech — and e... - [Red Queen Hypothesis](https://unseel.com/biology/red-queen-hypothesis.html): The Red Queen hypothesis is the idea that species must continually evolve simply to maintain their relative fitness against constantly ev... - [Reflex Arc](https://unseel.com/biology/reflex-arc.html): A reflex arc is the neural circuit that turns a stimulus into a protective response without waiting for the brain: a sensory (afferent) n... - [Regeneration](https://unseel.com/biology/regeneration.html): Regeneration is the regrowth of lost or damaged body parts. A salamander rebuilds a whole limb in weeks by forming a blastema of dediffer... - [Resting Membrane Potential](https://unseel.com/biology/resting-membrane-potential.html): Resting membrane potential is the steady voltage (~−70 mV) across a quiet cell's membrane, set by K+ leak channels, ion gradients, and th... - [Restriction Enzymes](https://unseel.com/biology/restriction-enzymes.html): Restriction enzymes are bacterial proteins that cut DNA at specific palindromic recognition sites, leaving sticky or blunt ends — the mol... - [Retrovirus](https://unseel.com/biology/retrovirus.html): A retrovirus is an RNA virus that copies its genome into DNA via reverse transcriptase, then integrates the DNA into the host chromosome ... - [Ribosome Structure](https://unseel.com/biology/ribosome-structure.html): A ribosome is a two-subunit molecular machine that builds proteins by reading mRNA codons and stitching amino acids together. Bacteria us... - [Ribozymes](https://unseel.com/biology/ribozymes.html): Ribozymes are catalytic RNA molecules that speed reactions a million- to billion-fold without protein help. Group I/II self-splicing intr... - [Ring Species](https://unseel.com/biology/ring-species.html): A ring species is a connected chain of populations that wraps around a geographic barrier, where each population interbreeds with its imm... - [RNA Interference](https://unseel.com/biology/rna-interference.html): RNA interference (RNAi) is a conserved gene-silencing pathway that destroys messenger RNA matched by short guide RNAs. Long double-strand... - [Saltatory Conduction](https://unseel.com/biology/saltatory-conduction.html): Saltatory conduction is the way a myelinated axon fires: instead of regenerating the action potential continuously, the spike leaps from ... - [Second Messengers (cAMP, IP3, Ca²⁺)](https://unseel.com/biology/second-messengers.html): Second messengers are small intracellular signaling molecules — cAMP, cGMP, IP3, DAG, Ca²⁺, NO — generated rapidly in response to extrace... - [Seed Dispersal](https://unseel.com/biology/seed-dispersal.html): A seed is a packaged plant: embryo, food reserve and protective coat in one ready-to-deploy unit. The hard part is getting it away from i... - [Seed Germination](https://unseel.com/biology/seed-germination.html): Seed germination is the resumption of metabolism in a quiescent embryo, ending in radicle emergence. It begins with imbibition, breaks do... - [Segmentation Clock](https://unseel.com/biology/segmentation-clock.html): The segmentation clock is a genetic oscillator in the presomitic mesoderm whose Hes/Her transcription factors cycle every ~120 min (mouse... - [Selective Sweep](https://unseel.com/biology/selective-sweep.html): A selective sweep is the rise of a strongly favored mutation to high frequency or fixation, which drags the neighboring DNA it sits on al... - [Sex-Linked Inheritance](https://unseel.com/biology/sex-linked-inheritance.html): Recessive alleles on the X behave differently in males — no backup X to mask them. Explains why colorblindness and hemophilia appear most... - [Sexual Selection](https://unseel.com/biology/sexual-selection.html): Sexual selection is Darwin's second mechanism of evolutionary change — differential mating success, as distinct from differential surviva... - [Signal Transduction](https://unseel.com/biology/signal-transduction.html): Signal transduction is the chain of molecular events that lets a cell respond to its environment. A ligand binds a receptor at the membra... - [Sliding Filament Theory](https://unseel.com/biology/sliding-filament.html): The sliding filament theory explains how a muscle contracts: thin actin filaments slide past thick myosin filaments, drawn inward by tiny... - [Sodium-Potassium Pump](https://unseel.com/biology/sodium-potassium-pump.html): The sodium-potassium pump is an ATP-powered enzyme that pushes 3 Na+ out and 2 K+ in per cycle, building the gradients behind nerve signa... - [Speciation](https://unseel.com/biology/speciation.html): Speciation occurs when populations of one species become reproductively isolated and diverge genetically over time. Geographic barriers (... - [Spliceosome](https://unseel.com/biology/spliceosome.html): The spliceosome is a 3-megadalton ribonucleoprotein assembly that removes introns from pre-mRNA. It contains five small nuclear RNAs (U1,... - [Stem Cell Differentiation](https://unseel.com/biology/stem-cell-differentiation.html): Stem cell differentiation is the process by which an unspecialized stem cell turns on lineage-specific genes to become a defined cell typ... - [Stomata](https://unseel.com/biology/stomata.html): Guard cells flank each stomatal pore. When turgid, the pore opens — CO₂ in, water vapor out. Plants constantly balance photosynthesis nee... - [Symbiosis](https://unseel.com/biology/symbiosis.html): Close biological partnerships come in three flavors. Mutualism helps both species. Commensalism helps one, ignores the other. Parasitism ... - [Synaptic Transmission](https://unseel.com/biology/synaptic-transmission.html): Synaptic transmission is how one neuron talks to the next: an action potential opens voltage-gated Ca2+ channels in the presynaptic termi... - [Systemic Acquired Resistance (SAR)](https://unseel.com/biology/systemic-acquired-resistance.html): Systemic acquired resistance is a long-lasting, broad-spectrum plant immune state induced by a primary local infection. Within hours of p... - [Taxonomy](https://unseel.com/biology/taxonomy.html): Taxonomy organizes living organisms into a hierarchical system of classification: domain, kingdom, phylum, class, order, family, genus, a... - [Telomeres](https://unseel.com/biology/telomeres.html): Telomeres are repetitive DNA-protein caps at the ends of linear eukaryotic chromosomes. In vertebrates the repeat is 5'-TTAGGG-3', stacke... - [Translation (Protein Synthesis)](https://unseel.com/biology/translation.html): Translation is the process that reads an mRNA into a chain of amino acids. It runs in three stages: initiation assembles a ribosome on th... - [Transpiration](https://unseel.com/biology/transpiration.html): Transpiration is the evaporation of water from leaves that pulls a continuous water column up the xylem, lifting water 100 m up a tree wi... - [Transposon](https://unseel.com/biology/transposon.html): Transposons are mobile DNA segments that move within a genome by cut-and-paste (DNA-only Class II) or copy-and-paste (retrotransposon Cla... - [tRNA Charging](https://unseel.com/biology/trna-charging.html): tRNA charging is the two-step ATP-dependent reaction by which 20 aminoacyl-tRNA synthetases attach each amino acid to its cognate tRNA, p... - [Trophic Cascade](https://unseel.com/biology/trophic-cascade.html): A trophic cascade is the indirect ecosystem effect of changes at the top of a food web propagating downward through multiple trophic leve... - [Trophic Levels](https://unseel.com/biology/trophic-levels.html): Producers at the base; herbivores, carnivores, and apex predators stack up. Only 10% of energy transfers between levels — which is why fo... - [Tropism](https://unseel.com/biology/tropism.html): Auxin redistribution drives directional growth. Light drives phototropism (shoots bend toward light); gravity drives gravitropism (roots ... - [Turing Patterns](https://unseel.com/biology/turing-patterns.html): Turing patterns are spots, stripes, and labyrinths that emerge on their own when two chemicals — a short-range activator that makes more ... - [Type III Secretion System](https://unseel.com/biology/type-iii-secretion.html): The Type III secretion system (T3SS), or injectisome, is a ~3.5 MDa transmembrane needle complex assembled from ~20 conserved proteins th... - [Unfolded Protein Response](https://unseel.com/biology/unfolded-protein-response.html): The unfolded protein response is a signaling network that detects misfolded proteins in the ER, slows new translation, boosts chaperones,... - [Urea Cycle](https://unseel.com/biology/urea-cycle.html): The urea cycle is the liver's five-step pathway that converts toxic ammonia into water-soluble urea for safe excretion in urine — spannin... - [VDJ Recombination](https://unseel.com/biology/vdj-recombination.html): VDJ recombination is the cut-and-paste reaction that shuffles a few hundred V, D, and J gene segments into a single rearranged exon, buil... - [Vernalization](https://unseel.com/biology/vernalization.html): Vernalization is the acquisition of competence to flower after a prolonged cold period. Weeks of winter epigenetically silence the FLC re... - [Viral Capsid Self-Assembly](https://unseel.com/biology/viral-capsid-assembly.html): Viral capsid self-assembly is the spontaneous process by which many copies of one or a few identical coat-protein subunits associate into... - [Voltage-Gated Ion Channels](https://unseel.com/biology/voltage-gated-ion-channel.html): A voltage-gated ion channel is a membrane protein with a charged S4 voltage sensor that snaps its pore open or shut in response to change... - [Wobble Hypothesis](https://unseel.com/biology/wobble-hypothesis.html): The wobble hypothesis explains how a single tRNA reads several synonymous codons: base pairing is strict at the first two codon positions... - [X-Inactivation](https://unseel.com/biology/x-inactivation.html): X-inactivation is the process by which female mammals silence one of their two X chromosomes in every cell, equalizing X-linked gene dosa... - [Xylem & Phloem](https://unseel.com/biology/xylem-phloem.html): Two parallel pipelines in every vascular plant. Xylem moves water up by transpiration pull; phloem moves sugar down by pressure-flow from... ## Chemistry Matter, properties, and the reactions that transform it. 302 concepts. - [Chemistry index](https://unseel.com/chemistry.html): All chemistry concepts - [18-Electron Rule](https://unseel.com/chemistry/eighteen-electron-rule.html): The 18-electron rule says a transition-metal complex is most stable when the metal's valence shell holds 18 electrons, completely filling... - [Acetal Formation & Protection](https://unseel.com/chemistry/acetal-protection.html): Acetal formation converts an aldehyde or ketone into an acetal (R₂C(OR')₂) using two alcohols or a diol under acid catalysis — a reversib... - [Acid-Base Titration](https://unseel.com/chemistry/acid-base-titration.html): 3D titration setup: a burette drips NaOH (base) into a flask of HCl (acid) with phenolphthalein indicator. At the molecular level, H⁺ and... - [Acid–Base Indicators](https://unseel.com/chemistry/acid-base-indicators.html): Acid–base indicators are weak organic dyes whose acid and conjugate-base forms have different colors, switching over a ~2-unit pH window ... - [Activation Energy](https://unseel.com/chemistry/activation-energy.html): Activation energy (Ea) is the minimum energy a colliding pair of molecules must possess for a reaction to occur. It is the height of the ... - [Aldol Condensation](https://unseel.com/chemistry/aldol-condensation.html): Aldol condensation is a base-catalyzed reaction in which the α-carbon of one carbonyl compound is deprotonated to form an enolate (α-H pK... - [Allosteric Enzyme Regulation](https://unseel.com/chemistry/allosteric-enzyme-regulation.html): Allosteric enzyme regulation is control of catalysis by a molecule binding a site other than the active site, shifting the enzyme between... - [Alpha, Beta, and Gamma Decay](https://unseel.com/chemistry/alpha-beta-gamma-decay.html): Alpha, beta, and gamma decay are the three modes of spontaneous radioactive transformation classified by Ernest Rutherford between 1899 a... - [Amino Acid Structure](https://unseel.com/chemistry/amino-acid-structure.html): One backbone (α-carbon + amino + carboxylic acid), 20 different R groups. Nonpolar R's bury inside proteins; polar sit on surface; acidic... - [Amphoterism](https://unseel.com/chemistry/amphoterism.html): Amphoterism is the ability of a substance to act as both an acid and a base. Examples: water, aluminum oxide, amino acids (zwitterions), ... - [Aromaticity](https://unseel.com/chemistry/aromaticity-huckel.html): Flat cyclic molecules with 4n+2 π electrons are unusually stable — aromatic. Benzene (6 π) is the prototype. Delocalized π cloud above an... - [Arrhenius Equation](https://unseel.com/chemistry/arrhenius-equation.html): Temperature dramatically speeds reactions because more molecules exceed the activation barrier. Roughly doubles per 10°C. Plot ln(k) vs 1... - [Atomic Absorption Spectroscopy (AAS)](https://unseel.com/chemistry/atomic-absorption-spectroscopy.html): Atomic absorption spectroscopy (AAS) is an analytical technique invented by Alan Walsh in 1955 in Australia for measuring trace metal con... - [Atomic Orbitals](https://unseel.com/chemistry/atomic-orbitals.html): Electrons inhabit probability clouds, not planetary orbits. s orbitals are spheres; p are dumbbells; d are cloverleaves; f are baroque. T... - [Atomic Structure](https://unseel.com/chemistry/atomic-structure.html): Atoms are the fundamental building blocks of all matter, consisting of a dense central nucleus surrounded by electrons in precise shells,... - [ATP — The Energy Currency](https://unseel.com/chemistry/atp-energy-currency.html): Adenosine 5'-triphosphate (ATP) is the universal energy carrier in all known life. Hydrolysis of the γ-phosphoanhydride bond releases ΔG°... - [Autocatalysis](https://unseel.com/chemistry/autocatalysis.html): Autocatalysis is a reaction whose own product is a catalyst, so the rate accelerates as product builds. The result is an S-shaped (sigmoi... - [Azeotropes](https://unseel.com/chemistry/azeotrope.html): An azeotrope is a liquid mixture that boils at constant composition, so the vapor it gives off has the same ratio of components as the li... - [Baeyer-Villiger Oxidation](https://unseel.com/chemistry/baeyer-villiger.html): The Baeyer-Villiger oxidation converts a ketone to an ester (or a cyclic ketone to a lactone) by inserting an oxygen atom adjacent to the... - [Band Theory of Solids](https://unseel.com/chemistry/band-theory-solids.html): Band theory explains why solids conduct or insulate: atomic orbitals merge into valence and conduction bands separated by a band gap. Eg ... - [Beckmann Rearrangement](https://unseel.com/chemistry/beckmann-rearrangement.html): The Beckmann rearrangement converts a ketoxime (R₂C=N–OH) into an amide under acid catalysis: the group sitting anti to the departing hyd... - [Beer-Lambert Law](https://unseel.com/chemistry/beer-lambert-law.html): The Beer-Lambert law states that absorbance A equals molar absorptivity ε times concentration c times path length l, written A = εcl. Dis... - [Belousov-Zhabotinsky Reaction](https://unseel.com/chemistry/belousov-zhabotinsky.html): The Belousov-Zhabotinsky (BZ) reaction is an oscillating chemical reaction in which a bromate-malonic-acid mixture catalyzed by cerium or... - [Birch Reduction](https://unseel.com/chemistry/birch-reduction.html): The Birch reduction uses solvated electrons from sodium or lithium dissolved in liquid ammonia to reduce an aromatic ring to a non-conjug... - [Bomb Calorimetry](https://unseel.com/chemistry/calorimetry-bomb.html): A bomb calorimeter is a thick-walled steel pressure vessel — typically 300 mL internal volume, capable of withstanding ~200 bar — into wh... - [Bond Dissociation Energy](https://unseel.com/chemistry/bond-dissociation-energy.html): Bond dissociation energy (BDE) is the enthalpy change to homolytically cleave one specific bond in the gas phase, producing two radicals.... - [Bond Order](https://unseel.com/chemistry/bond-order.html): Bond order is the number of chemical bonds between two atoms: (bonding − antibonding electrons) ÷ 2. N₂ = 3, O₂ = 2, F₂ = 1. Higher bond ... - [Born–Haber Cycle](https://unseel.com/chemistry/born-haber-cycle.html): The Born–Haber cycle is a Hess's-law construction that determines lattice energy from independently measured enthalpies. For NaCl: ΔH_f =... - [Brønsted-Lowry Acid-Base Theory](https://unseel.com/chemistry/bronsted-acid-base.html): A Brønsted-Lowry acid is a proton donor; a Brønsted-Lowry base is a proton acceptor. Every reaction produces a conjugate acid and a conju... - [Buchwald-Hartwig Amination](https://unseel.com/chemistry/buchwald-hartwig-amination.html): The Buchwald-Hartwig amination forges a carbon-nitrogen bond between an aryl halide and an amine using a palladium(0) catalyst, a bulky p... - [Buffer Solution](https://unseel.com/chemistry/buffer-solution.html): A weak acid and its conjugate base together absorb added H⁺ or OH⁻ without much pH change. Blood, cells, lab reagents all rely on buffers... - [Butler-Volmer & Tafel](https://unseel.com/chemistry/butler-volmer.html): The Butler-Volmer equation describes how the current at an electrode grows exponentially with overpotential, as the net current splits in... - [Cannizzaro Reaction](https://unseel.com/chemistry/cannizzaro-reaction.html): The Cannizzaro reaction is a base-induced disproportionation of an aldehyde with no alpha-hydrogen: one molecule is oxidized to a carboxy... - [Capillary Action](https://unseel.com/chemistry/capillary-action.html): Capillary action is the rise (or fall) of a liquid in a narrow tube or porous medium driven by adhesion to the walls and cohesion within ... - [Carbocation Rearrangement](https://unseel.com/chemistry/carbocation-rearrangement.html): Carbocation rearrangement is when a positive carbon center shifts a hydride or methyl group to a neighbor to become more stable. 1,2-shif... - [Carbon Nanotubes](https://unseel.com/chemistry/carbon-nanotube.html): A carbon nanotube is a rolled-up sheet of graphene one atom thick, a cylinder of hexagonal carbon a nanometer or two across. The directio... - [Carbonyl Chemistry](https://unseel.com/chemistry/carbonyl-chemistry.html): The polar C=O bond makes carbon electrophilic. Nucleophiles attack from above or below, breaking the π bond. The basis of reductions, hyd... - [Catalysis](https://unseel.com/chemistry/catalysis.html): 3D energy diagram showing a reaction's activation energy barrier. A catalyst provides an alternative pathway with a lower barrier — the r... - [Catalytic Hydrogenation](https://unseel.com/chemistry/catalytic-hydrogenation.html): Palladium or nickel catalysts split H₂ into atoms on their surface. Alkenes bind the surface and pick up hydrogens, converting C=C to C-C... - [Chain Reactions](https://unseel.com/chemistry/chain-reactions.html): A chain reaction is a multi-step mechanism in which a chain carrier — typically a radical or ion — is regenerated each propagation cycle,... - [Chelate Effect](https://unseel.com/chemistry/chelate-effect.html): The chelate effect is the extra thermodynamic stability a metal complex gains when a single multidentate ligand wraps around the metal in... - [Chemical Bonds](https://unseel.com/chemistry/chemical-bonds.html): How atoms bond — ionic bonds transfer electrons (Na + Cl → NaCl), covalent bonds share them (H + H → H₂). The two rules that build every ... - [Chemical Equilibrium](https://unseel.com/chemistry/chemical-equilibrium.html): 3D reaction vessel showing forward and reverse reactions running simultaneously. At equilibrium, both rates are equal — not stopped, but ... - [Chemical Garden](https://unseel.com/chemistry/chemical-garden.html): A chemical garden is the colorful tangle of hollow mineral tubes that sprouts when a metal-salt seed is dropped into sodium silicate solu... - [Chemiluminescence](https://unseel.com/chemistry/chemiluminescence.html): Chemiluminescence is the emission of light by a chemical reaction that channels its energy into an electronically excited product instead... - [Chirality](https://unseel.com/chemistry/chirality-stereoisomers.html): A carbon with four different groups creates a chiral center. Its mirror image is non-superimposable — an enantiomer. Biology discriminate... - [Chlor-Alkali Process](https://unseel.com/chemistry/chlor-alkali.html): The chlor-alkali process electrolyzes brine — saturated aqueous sodium chloride, ~25 % NaCl — to make three coupled commodities: chlorine... - [Claisen Condensation](https://unseel.com/chemistry/claisen-condensation.html): The Claisen condensation joins two ester molecules in a base-catalyzed C-C bond formation. An ester enolate (α-H pKa ~25 for an alkyl est... - [Clausius-Clapeyron Equation](https://unseel.com/chemistry/clausius-clapeyron.html): The Clausius-Clapeyron equation links a substance's vapor pressure to its temperature: ln(P₂/P₁) = −ΔH_vap/R · (1/T₂ − 1/T₁). It explains... - [Click Chemistry](https://unseel.com/chemistry/click-chemistry.html): Click chemistry is K. Barry Sharpless's 2001 design philosophy for high-yielding, modular, near-quantitative reactions. Its flagship is t... - [Colligative Properties](https://unseel.com/chemistry/colligative-properties.html): Colligative properties depend only on the number of dissolved particles, not their identity. The four classics — vapor-pressure lowering,... - [Collision Theory](https://unseel.com/chemistry/collision-theory.html): Molecules must collide to react — but not every collision works. The collision needs enough energy and the correct orientation. Most coll... - [Colloids & Emulsions](https://unseel.com/chemistry/colloid.html): A colloid is a mixture in which particles 1–1000 nm across are dispersed through another phase — too large to dissolve into single molecu... - [Column Chromatography](https://unseel.com/chemistry/column-chromatography.html): Column chromatography separates a mixture by passing it through a packed bed where each compound's affinity for the stationary phase dete... - [Combustion](https://unseel.com/chemistry/combustion.html): 3D methane molecule (CH₄) reacting with oxygen (O₂) in combustion. Show bonds breaking in both molecules, atoms rearranging, and new bond... - [Common-Ion Effect](https://unseel.com/chemistry/common-ion-effect.html): The common-ion effect is the drop in solubility (or ionization) when a soluble salt sharing an ion is added — a Le Chatelier shift that f... - [Concentration Cell](https://unseel.com/chemistry/concentration-cell.html): A concentration cell is a galvanic cell with identical electrodes whose voltage comes purely from a difference in ion concentration: E = ... - [Conducting Polymers](https://unseel.com/chemistry/conducting-polymer.html): Conducting polymers are organic macromolecules with a conjugated backbone of alternating single and double bonds that carries electric cu... - [Contact Process (Sulfuric Acid)](https://unseel.com/chemistry/contact-process-sulfuric.html): The Contact Process is the industrial route to sulfuric acid: burn elemental sulfur to sulfur dioxide, oxidize SO₂ to SO₃ over a vanadium... - [Coordination Complex](https://unseel.com/chemistry/coordination-complex.html): A central metal ion coordinates with ligands that donate electron pairs. Six ligands typically arrange octahedrally. D-orbital splitting ... - [Corrosion (Rust)](https://unseel.com/chemistry/corrosion-rust.html): Corrosion is the electrochemical destruction of metal. Iron oxidizes at an anodic site, oxygen reduces at a cathodic site, and the two ha... - [Cracking Petroleum](https://unseel.com/chemistry/cracking-petroleum.html): Heat and zeolite catalysts break long crude-oil chains into gasoline, diesel, and alkene feedstocks. Fluid catalytic cracking runs contin... - [Crown Ethers](https://unseel.com/chemistry/crown-ether.html): A crown ether is a macrocyclic polyether whose ring of oxygen atoms points its lone pairs inward, forming a cavity that grips a metal cat... - [Crystal Field Theory](https://unseel.com/chemistry/crystal-field-theory.html): Crystal field theory explains how ligands split a metal ion's five d-orbitals into t2g and eg sets. The gap (Δo) sets color, magnetism, a... - [Crystal Lattice](https://unseel.com/chemistry/crystal-lattice.html): 3D crystal structures built from repeating unit cells. Show the three cubic lattices: simple cubic (SC, 52% packed), body-centered cubic ... - [Crystallization](https://unseel.com/chemistry/crystallization.html): Crystallization turns a dissolved solute into an ordered solid lattice by cooling, evaporating, or anti-solvent addition. Pure compounds ... - [Cyclic Voltammetry](https://unseel.com/chemistry/cyclic-voltammetry.html): Cyclic voltammetry (CV) sweeps an electrode's potential linearly up and back down, recording the resulting current. The duck-shaped curre... - [Dalton's Law of Partial Pressures](https://unseel.com/chemistry/dalton-law-partial-pressures.html): Dalton's law states that the total pressure of a non-reacting gas mixture equals the sum of partial pressures of its components: P_total ... - [Debye–Hückel Theory](https://unseel.com/chemistry/debye-huckel-theory.html): Debye–Hückel theory explains why dissolved ions act more dilute than they really are: each ion is screened by an ionic atmosphere, loweri... - [Dendritic Crystal Growth](https://unseel.com/chemistry/dendritic-crystal-growth.html): Dendritic crystal growth is the tree-like branching that appears when a crystal grows faster than heat or solute can diffuse away from it... - [Density Functional Theory (DFT)](https://unseel.com/chemistry/density-functional-theory.html): Density functional theory (DFT) maps the N-electron Schrödinger problem to a problem of the 3-coordinate electron density ρ(r). Hohen... - [Dess-Martin Oxidation](https://unseel.com/chemistry/dess-martin-oxidation.html): The Dess-Martin oxidation converts primary alcohols to aldehydes and secondary alcohols to ketones using Dess-Martin periodinane (DMP), a... - [Diagonal Relationship](https://unseel.com/chemistry/diagonal-relationship.html): A diagonal relationship is the chemical similarity between an element and the one diagonally down-right from it — Li↔Mg, Be↔Al, B↔Si — dr... - [Diels-Alder Reaction](https://unseel.com/chemistry/diels-alder.html): The Diels-Alder reaction is a concerted [4+2] cycloaddition between a conjugated diene and a dienophile that builds a six-membered ring i... - [Differential Scanning Calorimetry (DSC)](https://unseel.com/chemistry/differential-scanning-calorimetry.html): Differential scanning calorimetry (DSC) measures the difference in heat flow between a sample and an inert reference as both are heated o... - [Dipole Moment](https://unseel.com/chemistry/dipole-moment.html): A molecular dipole moment μ is the vector quantity Q·d, where Q is the magnitude of separated partial charges and d is the disp... - [Distillation](https://unseel.com/chemistry/distillation.html): 3D distillation apparatus: a flask of liquid mixture heated to boiling. The component with the lower boiling point evaporates first, rise... - [Dynamic Light Scattering](https://unseel.com/chemistry/dynamic-light-scattering.html): Dynamic light scattering (DLS) measures particle size in solution by timing how fast the scattered-light intensity flickers. Small partic... - [E1 vs E2 Elimination](https://unseel.com/chemistry/e1-e2-elimination.html): E1 and E2 are the two principal elimination mechanisms in organic chemistry. Both convert R-X into an alkene by losing a hydrogen from on... - [EDTA Complexometric Titration](https://unseel.com/chemistry/complexometric-edta.html): EDTA complexometric titration measures metal ions by titrating with EDTA, a hexadentate chelator that wraps each ion in a 1:1 cage. The s... - [Effective Nuclear Charge](https://unseel.com/chemistry/effective-nuclear-charge.html): Effective nuclear charge (Zeff) is the net positive pull a given electron feels after inner electrons shield part of the nucleus: Zeff = ... - [Electrochemical Double Layer](https://unseel.com/chemistry/electrochemical-double-layer.html): The electrochemical double layer is the nanometer-thin sheet of charge that forms at every electrode-electrolyte interface, storing charg... - [Electrochemistry](https://unseel.com/chemistry/electrochemistry.html): 3D galvanic (voltaic) cell with zinc and copper electrodes in separate solutions connected by a salt bridge. Zinc atoms lose electrons (o... - [Electrolysis of Water](https://unseel.com/chemistry/electrolysis-water.html): Electrolysis of water splits H₂O into H₂ and O₂ by forcing current through an electrolyte against a 1.23 V thermodynamic minimum. Real in... - [Electron Configuration](https://unseel.com/chemistry/electron-configuration.html): Three rules tell you where each electron lives in an atom. Aufbau: fill lowest energy first. Pauli: max 2 per orbital with opposite spins... - [Electroplating](https://unseel.com/chemistry/electroplating.html): Electroplating is the electrochemical deposition of a thin metallic layer onto a conductive substrate by passing direct current through a... - [Empirical vs Molecular Formula](https://unseel.com/chemistry/empirical-molecular-formula.html): An empirical formula is the simplest whole-number ratio of atoms; a molecular formula is the actual count. Molecular = empirical × n, whe... - [Entropy and the Second Law](https://unseel.com/chemistry/entropy-second-law.html): Entropy is a state function with units of joules per kelvin that quantifies how a system's energy is spread among its accessible configur... - [Enzyme Cofactors & Coenzymes](https://unseel.com/chemistry/enzyme-cofactors.html): Enzyme cofactors and coenzymes are non-protein helper molecules — metal ions or small organics like NAD⁺ — that complete an enzyme's acti... - [Enzyme Inhibition](https://unseel.com/chemistry/enzyme-inhibition.html): Enzyme inhibition is the slowing of an enzyme-catalyzed reaction by a molecule that interferes with catalysis. Competitive, non-competiti... - [Epoxide Ring-Opening](https://unseel.com/chemistry/epoxide-ring-opening.html): Epoxide ring-opening is a nucleophilic substitution that snaps a strained 3-membered C–O–C ring open. ~27 kcal/mol of ring strain drives ... - [Esterification](https://unseel.com/chemistry/esterification.html): Carboxylic acid + alcohol, catalyzed by H⁺, produces an ester. Reversible — drive forward by removing water. Esters give fruits their sme... - [Eutectic Point](https://unseel.com/chemistry/eutectic.html): The eutectic point is the single composition where two or more components melt and freeze together at one temperature lower than either p... - [Eyring Equation](https://unseel.com/chemistry/eyring-equation.html): The Eyring equation k = (κ kB T/h) exp(−ΔG‡/RT) gives a chemical rate constant from the activation Gibbs energy ΔG‡ of forming the transi... - [Faraday's Laws of Electrolysis](https://unseel.com/chemistry/faradays-law-electrolysis.html): Faraday's first law says the mass deposited at an electrode is proportional to the charge passed. His second says equal charge deposits c... - [Ferrocene](https://unseel.com/chemistry/ferrocene.html): Ferrocene, Fe(C₅H₅)₂, is an iron(II) atom sandwiched between two parallel cyclopentadienyl rings. Its eighteen valence electrons make it ... - [Fischer Esterification](https://unseel.com/chemistry/fischer-esterification.html): Fischer esterification joins a carboxylic acid and an alcohol into an ester under acid catalysis (H₂SO₄ or dry HCl), releasing water. It ... - [Fischer Projection](https://unseel.com/chemistry/fischer-projection.html): A Fischer projection draws a tetrahedral chiral carbon as a flat cross: the two horizontal bonds wedge toward the viewer, the two vertica... - [Fischer-Tropsch Process](https://unseel.com/chemistry/fischer-tropsch.html): The Fischer-Tropsch process is a heterogeneous catalytic conversion of synthesis gas (a mixture of carbon monoxide and hydrogen) into lin... - [Flame Test](https://unseel.com/chemistry/flame-test.html): A flame test identifies metal ions by the color they emit when heated: heat excites electrons, and as they fall back they release element... - [Flash Distillation](https://unseel.com/chemistry/flash-distillation.html): Flash distillation separates a mixture in one sudden vaporization: hot pressurized feed drops to a lower pressure, part flashes to vapor ... - [Fluorescence Spectroscopy](https://unseel.com/chemistry/fluorescence-spectroscopy.html): Fluorescence spectroscopy measures the light spontaneously re-emitted by a molecule that has absorbed a higher-energy photon and relaxed ... - [Formal Charge](https://unseel.com/chemistry/formal-charge.html): Formal charge is the hypothetical charge an atom would carry if every bond were shared equally: FC = valence − lone-pair electrons − ½ bo... - [Free-Radical Halogenation](https://unseel.com/chemistry/free-radical-halogenation.html): Free-radical halogenation is the photochemical or thermal substitution of an alkane C-H bond with a halogen via a homolytic chain mechani... - [Friedel-Crafts Reaction](https://unseel.com/chemistry/friedel-crafts.html): The Friedel-Crafts reaction installs alkyl or acyl groups onto aromatic rings using a Lewis acid catalyst (typically AlCl₃). It is the st... - [Fuel Cell](https://unseel.com/chemistry/fuel-cell.html): A fuel cell converts chemical energy directly into electricity by oxidizing a fuel like hydrogen at the anode and reducing oxygen at the ... - [Fugacity & Activity](https://unseel.com/chemistry/fugacity.html): Fugacity is the effective pressure a real gas exerts so that it obeys the ideal thermodynamic equations, and activity is its concentratio... - [Fullerene (C60)](https://unseel.com/chemistry/fullerene.html): Fullerene C60 is a hollow cage of sixty carbon atoms arranged as twenty hexagons and twelve pentagons — the same pattern as a soccer ball... - [Functional Groups](https://unseel.com/chemistry/functional-groups.html): A dozen recurring substructures explain nearly all organic reactivity. -OH, -COOH, -NH₂, -C=O, -COO-, -O-, and their relatives. Recognize... - [Galvanic Cell](https://unseel.com/chemistry/galvanic-cell.html): A galvanic (voltaic) cell converts spontaneous redox energy into electrical work. Two half-cells — anode (oxidation) and cathode (reducti... - [Gas Chromatography](https://unseel.com/chemistry/gas-chromatography.html): Gas chromatography vaporizes a sample, sweeps it through a heated capillary column with an inert carrier gas, and separates components by... - [Gas Laws](https://unseel.com/chemistry/gas-laws.html): 3D container of gas particles demonstrating the ideal gas law PV = nRT. Boyle's law: squeeze the container and pressure rises as particle... - [Gel Electrophoresis](https://unseel.com/chemistry/gel-electrophoresis.html): Gel electrophoresis pulls charged biomolecules through a porous gel using an electric field; small molecules thread through faster than l... - [Gibbs Free Energy](https://unseel.com/chemistry/gibbs-free-energy.html): The master spontaneity criterion. ΔG < 0 means a reaction runs on its own. Combines enthalpy with entropy, scaled by temperature. Explain... - [Glass Transition Temperature](https://unseel.com/chemistry/glass-transition.html): The glass transition temperature (Tg) is the temperature at which an amorphous polymer softens from a rigid, brittle glass into a soft, r... - [Graham’s Law of Effusion](https://unseel.com/chemistry/grahams-law-diffusion.html): Graham’s Law of Effusion: the rate of effusion of a gas is inversely proportional to the square root of its molar mass. Rate ∝ 1/√M. Ligh... - [Graphene](https://unseel.com/chemistry/graphene.html): Graphene is a single sheet of carbon atoms bonded in a hexagonal honeycomb lattice — one atom thick. Its sp² carbons share a delocalized ... - [Grignard Reaction](https://unseel.com/chemistry/grignard-reaction.html): The Grignard reaction uses organomagnesium reagents (RMgX) as carbon nucleophiles to attack carbonyls and other electrophiles, forming ne... - [Haber-Bosch Process](https://unseel.com/chemistry/haber-bosch.html): Ammonia synthesis from air. 400°C, 200 atm, iron catalyst — brutal conditions to break nitrogen's triple bond. Fritz Haber's 1908 breakth... - [Halogens (Group 17)](https://unseel.com/chemistry/halogens.html): The halogens are Group 17 of the periodic table — fluorine, chlorine, bromine, iodine, astatine (and synthetic tennessine). They are the ... - [Hard-Soft Acid-Base (HSAB)](https://unseel.com/chemistry/hard-soft-acid-base.html): Hard-Soft Acid-Base theory, formulated by Ralph Pearson in 1963, predicts which Lewis acids and bases bind most strongly. Hard acids are ... - [Heat Capacity Cv vs Cp](https://unseel.com/chemistry/heat-capacity-cv-cp.html): Heat capacity is the amount of heat required to raise a substance's temperature by 1 K. Two flavours dominate every gas calculation: Cv =... - [Heck Reaction](https://unseel.com/chemistry/heck-reaction.html): The Heck reaction uses a palladium(0) catalyst to couple an aryl or vinyl halide to an alkene, stitching a new carbon–carbon bond and lea... - [Henderson-Hasselbalch](https://unseel.com/chemistry/henderson-hasselbalch.html): The buffer equation. pH equals pKa plus log of the base-to-acid ratio. When the ratio is 1:1, pH = pKa. Buffers work best within ±1 pH un... - [Henry's Law](https://unseel.com/chemistry/henrys-law.html): Henry's law states that the equilibrium concentration of a gas dissolved in a liquid is proportional to its partial pressure above the li... - [Hess's Law](https://unseel.com/chemistry/hess-law.html): Hess's law states that the enthalpy change of a reaction depends only on the initial and final states, not the path taken. Sum the ΔH of ... - [High-Performance Liquid Chromatography (HPLC)](https://unseel.com/chemistry/hplc.html): High-Performance Liquid Chromatography (HPLC) separates dissolved analytes by pumping a liquid mobile phase at 200–400 bar through a colu... - [Hückel's Rule (4n+2)](https://unseel.com/chemistry/huckel-rule.html): Hückel's rule says a planar, fully conjugated ring is aromatic if it holds 4n+2 delocalized π electrons (2, 6, 10, 14…) and antiaromatic ... - [Hydroboration-Oxidation](https://unseel.com/chemistry/hydroboration-oxidation.html): Hydroboration-oxidation adds water across a C=C double bond with anti-Markovnikov regiochemistry and syn stereochemistry. BH₃ adds in one... - [Hydrogels](https://unseel.com/chemistry/hydrogel.html): A hydrogel is a cross-linked polymer network that swells in water without dissolving, holding tens to thousands of times its dry weight i... - [Hydrogen Bonding](https://unseel.com/chemistry/hydrogen-bonding.html): A hydrogen bond is a directional electrostatic-plus-partly-covalent attraction between a hydrogen atom covalently bonded to an electroneg... - [Ideal Solution](https://unseel.com/chemistry/ideal-solution.html): An ideal solution is a mixture where the partial vapor pressure of each component obeys Raoult's law: Pi = xi · Pi*. Three thermodynamic ... - [Infrared Spectroscopy](https://unseel.com/chemistry/ir-spectroscopy.html): Infrared (IR) spectroscopy bounces or transmits IR light through a sample and records which wavelengths the molecule absorbs. Each absorp... - [Integrated Rate Law](https://unseel.com/chemistry/integrated-rate-law.html): The integrated rate law expresses concentration as an explicit function of time. You get it by separating variables in the differential r... - [Intermolecular Forces](https://unseel.com/chemistry/intermolecular-forces.html): 3D comparison of the three main intermolecular forces, weakest to strongest. London dispersion forces: temporary dipoles from electron fl... - [Ionization Energy](https://unseel.com/chemistry/ionization-energy.html): The energy to remove an atom's outermost electron. Sawtooth pattern across the periodic table: low for alkali metals, high for noble gase... - [Jahn-Teller Distortion](https://unseel.com/chemistry/jahn-teller.html): The Jahn-Teller theorem states that any non-linear molecule in an electronically degenerate ground state distorts its geometry to remove ... - [Joule-Thomson Effect](https://unseel.com/chemistry/joule-thomson-effect.html): The Joule-Thomson effect is the temperature change a real gas undergoes when expanded irreversibly through a porous plug or throttle valv... - [Karl Fischer Titration](https://unseel.com/chemistry/karl-fischer-titration.html): Karl Fischer titration measures trace water by reacting iodine with H₂O in a 1:1 mol ratio. Coulometric mode detects down to ~1 ppm; volu... - [Keto–Enol Tautomerism](https://unseel.com/chemistry/keto-enol-tautomerism.html): Keto–enol tautomerism is the rapid equilibrium where a carbonyl (keto) form swaps an α-proton from carbon to oxygen, becoming an enol wit... - [Kinetic Isotope Effect](https://unseel.com/chemistry/kinetic-isotope-effect.html): The kinetic isotope effect (KIE) is the change in reaction rate when an atom is replaced by a heavier isotope, most dramatically swapping... - [Langmuir Adsorption Isotherm](https://unseel.com/chemistry/langmuir-isotherm.html): The Langmuir adsorption isotherm θ = K p/(1 + K p) gives the fractional coverage of a uniform surface at equilibrium with a gas at partia... - [Lanthanide Contraction](https://unseel.com/chemistry/lanthanide-contraction.html): Lanthanide contraction is the steady shrinking of the lanthanide ions from La to Lu — about 20 pm — because buried 4f electrons shield th... - [Lattice Energy](https://unseel.com/chemistry/lattice-energy.html): Lattice energy is the energy released when isolated gas-phase ions assemble into one mole of ionic crystal. It scales as U ∝ |z⁺z⁻|/r₀ — ... - [Law of Corresponding States](https://unseel.com/chemistry/corresponding-states.html): The law of corresponding states says that when pressure, volume, and temperature are rescaled by each substance's own critical values (Pr... - [Le Chatelier's Principle](https://unseel.com/chemistry/le-chatelier-principle.html): Le Chatelier's principle: if you stress a system at equilibrium — change concentration, pressure, or temperature — it shifts to partly op... - [Leveling Effect](https://unseel.com/chemistry/leveling-effect.html): The leveling effect is how a solvent caps acid and base strength: in water every strong acid is leveled to H₃O⁺, so HCl, HNO₃ and HClO₄ a... - [Lewis Acid-Base Theory](https://unseel.com/chemistry/lewis-acid-base.html): A Lewis acid is an electron-pair acceptor; a Lewis base is an electron-pair donor. The pair forms a coordinate (dative) covalent bond — b... - [Lewis Structures](https://unseel.com/chemistry/lewis-structures.html): Map a molecule's valence electrons: bonds as lines, lone pairs as dots. Every non-H atom aims for an octet. The starting point of every o... - [Liesegang Rings](https://unseel.com/chemistry/liesegang-rings.html): Liesegang rings are regularly spaced concentric bands of precipitate that form when one electrolyte diffuses into a gel loaded with anoth... - [Limiting Reagent](https://unseel.com/chemistry/limiting-reagent.html): A limiting reagent is the reactant that runs out first and caps how much product forms. Compare mole-to-coefficient ratios; the smallest ... - [Lindemann Mechanism](https://unseel.com/chemistry/lindemann-mechanism.html): The Lindemann mechanism explains why "unimolecular" reactions in the gas phase have rate constants that depend on pressure. A reactant A ... - [Lithium-Ion Battery](https://unseel.com/chemistry/lithium-ion-battery.html): A lithium-ion cell is a rechargeable electrochemical device that shuttles Li+ ions between a graphite anode and a transition-metal oxide ... - [Mannich Reaction](https://unseel.com/chemistry/mannich-reaction.html): The Mannich reaction is a three-component condensation that stitches an amine, formaldehyde, and an enolizable carbonyl into a β-amino ke... - [Marcus Theory](https://unseel.com/chemistry/marcus-theory.html): Marcus theory predicts the rate of electron transfer from two quantities: the thermodynamic driving force −ΔG° and the reorganization ene... - [Markovnikov's Rule](https://unseel.com/chemistry/markovnikov-rule.html): Markovnikov's rule predicts the regioselectivity of HX addition to alkenes: the hydrogen attaches to the carbon that already has more hyd... - [Mass Defect and Binding Energy](https://unseel.com/chemistry/mass-defect-binding-energy.html): A bound nucleus weighs measurably less than the sum of its free constituent protons and neutrons. The missing rest mass Δm, multiplied by... - [Mass Spectrometry](https://unseel.com/chemistry/mass-spectrometry.html): Mass spectrometry measures the mass-to-charge ratio (m/z) of ionised molecules. A standard instrument has three stages — an ion source th... - [Maxwell-Boltzmann Distribution](https://unseel.com/chemistry/maxwell-boltzmann-distribution.html): The Maxwell-Boltzmann distribution f(v) = 4π(m/2πkT)^(3/2) v² exp(−mv²/2kT) gives the probability density of molecular speeds in a classi... - [Metal-Organic Frameworks (MOFs)](https://unseel.com/chemistry/metal-organic-framework.html): A metal-organic framework (MOF) is a crystalline solid built from metal-ion nodes linked by rigid organic struts into an open, periodic s... - [Metallic Bonding](https://unseel.com/chemistry/metallic-bonding.html): Metal atoms release valence electrons into a collective sea. Cations sit in a lattice, electrons roam freely — explaining conductivity, m... - [Micelle Formation](https://unseel.com/chemistry/micelle-formation.html): Micelle formation is the self-assembly of surfactant molecules into tiny spheres — hydrophobic tails inward, hydrophilic heads out — once... - [Michael Addition](https://unseel.com/chemistry/michael-addition.html): The Michael addition is the 1,4-conjugate addition of a soft (often stabilized) nucleophile to an α,β-unsaturated carbonyl, called a Mich... - [Michaelis-Menten Kinetics](https://unseel.com/chemistry/michaelis-menten.html): Michaelis-Menten kinetics describes how the rate of an enzyme-catalyzed reaction rises with substrate concentration and then saturates at... - [Molarity, Molality & Mole Fraction](https://unseel.com/chemistry/concentration-units.html): Molarity, molality and mole fraction are three ways to state concentration. Molarity = mol solute / L solution; molality = mol solute / k... - [Molecular Geometry](https://unseel.com/chemistry/molecular-geometry.html): 3D visualization of VSEPR theory — electron pairs around a central atom repel each other into specific geometries. Show linear (CO₂, 180°... - [Molecular Orbital Theory](https://unseel.com/chemistry/molecular-orbital-theory.html): Molecular orbital (MO) theory describes chemical bonding by combining atomic orbitals from each atom into delocalized molecular orbitals ... - [NAD⁺/NADH and FAD/FADH₂](https://unseel.com/chemistry/nad-fad-redox.html): NAD+ (nicotinamide adenine dinucleotide) and FAD (flavin adenine dinucleotide) are the dominant redox carriers in cellular metabolism. NA... - [Nernst Equation](https://unseel.com/chemistry/nernst-equation.html): The Nernst equation gives the cell potential at any concentration: E = E° − (RT/nF) · ln(Q). At 25 °C the constants collapse to E = E° − ... - [Neutron Activation Analysis](https://unseel.com/chemistry/neutron-activation-analysis.html): Neutron activation analysis (NAA) makes elements radioactive by neutron capture, then measures the gamma rays they emit to identify and q... - [Newman Projection](https://unseel.com/chemistry/newman-projection.html): A Newman projection is the conformational chemist's pet view: sight along a single C–C bond, draw the front carbon as a dot with three li... - [NMR Spectroscopy](https://unseel.com/chemistry/nmr-spectroscopy.html): Nuclear magnetic resonance (NMR) spectroscopy places a sample inside a strong magnet and pulses radio-frequency energy at spin-active nuc... - [Noble Gases (Group 18)](https://unseel.com/chemistry/noble-gases.html): The noble gases — He, Ne, Ar, Kr, Xe, Rn, and synthetic Og — occupy Group 18 and have full ns2np6 octet shells (helium just ns2). Once th... - [Nuclear Decay](https://unseel.com/chemistry/nuclear-decay.html): Nuclear decay is the spontaneous transformation of an unstable nucleus into a more stable one by emitting particles or photons. The five ... - [Nuclear Fission](https://unseel.com/chemistry/nuclear-fission.html): Nuclear fission is the process where a heavy nucleus, such as Uranium-235, absorbs a neutron and splits into two smaller nuclei, releasin... - [Nuclear Fission vs Fusion](https://unseel.com/chemistry/fission-fusion.html): Fission and fusion are opposite-sense nuclear reactions that both release energy by climbing toward the iron-56 peak of the binding-energ... - [Nuclear Fusion](https://unseel.com/chemistry/nuclear-fusion.html): Nuclear fusion is the process that powers the sun, where light atomic nuclei like deuterium and tritium combine to form a heavier helium ... - [Nucleophilic Aromatic Substitution](https://unseel.com/chemistry/nucleophilic-aromatic-substitution.html): Nucleophilic aromatic substitution (SNAr) swaps a leaving group on a benzene ring: a nucleophile adds, forms a Meisenheimer complex, then... - [Nucleotide Structure](https://unseel.com/chemistry/nucleotide-structure.html): Three parts: phosphate, pentose sugar, nitrogenous base. Four bases (A, C, G, T or U). Linked via phosphodiester bonds into directional c... - [Nylon (Condensation Polymer)](https://unseel.com/chemistry/nylon-condensation.html): Nylon is a condensation polymer built by repeatedly joining a diamine and a diacid (or diacid chloride) into a long chain of amide bonds,... - [Olefin Metathesis](https://unseel.com/chemistry/olefin-metathesis.html): Olefin metathesis swaps the carbon ends of two C=C double bonds. A metal carbene catalyst forms a metallacyclobutane that cleaves the oth... - [Orbital Hybridization](https://unseel.com/chemistry/hybridization.html): Atomic s and p orbitals mix to form new hybrid orbitals matched to bond geometry. sp³ gives 4 bonds at 109.5° (tetrahedral, like methane)... - [Organic Chemistry](https://unseel.com/chemistry/organic-chemistry.html): 3D carbon atom forming four covalent bonds, creating the backbone of organic molecules. Show methane (CH₄), ethane, propane growing into ... - [Osmotic Pressure](https://unseel.com/chemistry/osmotic-pressure.html): Osmotic pressure π is the pressure that must be applied to a solution to stop pure solvent from flowing into it across a semipermeable me... - [Ostwald Process (Nitric Acid)](https://unseel.com/chemistry/ostwald-process.html): The Ostwald process makes nitric acid by catalytically oxidizing ammonia in three stages: NH₃ → NO → NO₂ → HNO₃. A platinum-rhodium gauze... - [Overpotential](https://unseel.com/chemistry/overpotential.html): Overpotential is the extra voltage above thermodynamic minimum that a real electrode needs to drive a reaction at a useful rate. η = E_ap... - [Oxidation States](https://unseel.com/chemistry/oxidation-states.html): An oxidation state is the formal charge an atom would carry if every bond were ionic, with the more electronegative atom keeping the elec... - [Oxidative Addition & Reductive Elimination](https://unseel.com/chemistry/oxidative-addition.html): Oxidative addition and reductive elimination are the paired steps that make and break two bonds at a metal center while changing its oxid... - [Oxymercuration-Demercuration](https://unseel.com/chemistry/oxymercuration.html): Oxymercuration-demercuration adds water across an alkene with Markovnikov selectivity and no carbocation rearrangement. Hg(OAc)₂/H₂O form... - [Ozonolysis](https://unseel.com/chemistry/ozonolysis.html): Ozonolysis is the cleavage of a C=C double bond by ozone (O₃) to give two carbonyl fragments. The Criegee mechanism: O₃ undergoes a [3+2]... - [Paper Chromatography](https://unseel.com/chemistry/paper-chromatography.html): Paper chromatography separates a mixture by carrying it up a strip of cellulose paper with a solvent. Each component partitions between t... - [Pauli Exclusion Principle](https://unseel.com/chemistry/pauli-exclusion-principle.html): The Pauli exclusion principle says no two electrons in an atom can share the same four quantum numbers — so each orbital holds at most tw... - [Peptide Bond](https://unseel.com/chemistry/peptide-bond.html): A peptide bond is the amide linkage joining the α-carboxyl of one amino acid to the α-amino of the next, formed with loss of water. Reson... - [Periodic Table Trends](https://unseel.com/chemistry/periodic-table-trends.html): 3D landscape of the periodic table where element properties rise and fall like terrain. Atomic radius shrinks left-to-right as nuclear ch... - [pH Scale](https://unseel.com/chemistry/ph-scale.html): 3D animated pH scale from 0 to 14 with color-changing indicators. - [Phase Diagrams](https://unseel.com/chemistry/phase-diagram.html): A phase diagram is a pressure-temperature map showing which phase — solid, liquid, or gas — a substance occupies, with boundary lines, a ... - [Polarimetry](https://unseel.com/chemistry/polarimetry.html): Polarimetry measures how much a chiral sample rotates the plane of plane-polarized light. The observed rotation α, scaled by path length ... - [Polymerization](https://unseel.com/chemistry/polymerization.html): 3D monomers (small molecules) linking together in a chain reaction to form a polymer — thousands of repeating units long. Show addition p... - [Polyprotic Acids](https://unseel.com/chemistry/polyprotic-acids.html): Polyprotic acids release more than one proton per molecule, with each successive ionization governed by a separate pKa. H3PO4 dissociates... - [Potentiometric Titration](https://unseel.com/chemistry/potentiometric-titration.html): Potentiometric titration finds the equivalence point by measuring electrode potential versus titrant volume — no indicator dye. The endpo... - [Pourbaix Diagram](https://unseel.com/chemistry/pourbaix-diagram.html): A Pourbaix diagram is a map of electrode potential (E) versus pH that shows which species of a metal — dissolved ion, solid metal, or pro... - [Precipitation Reactions](https://unseel.com/chemistry/precipitation-reactions.html): A precipitation reaction is when two aqueous solutions mix and form an insoluble solid (a precipitate). Driven by solubility rules; spect... - [Quantum Numbers](https://unseel.com/chemistry/quantum-numbers.html): Every electron has a unique 4-number address. n sets energy/shell. ℓ sets shape. mℓ sets orientation. mₛ sets spin direction. No two shar... - [Radioactive Half-Life](https://unseel.com/chemistry/half-life-radioactive.html): Half-life is the time for half a radioactive sample to decay. Because radioactive decay is a strictly first-order process — each nucleus ... - [Radioactive Secular Equilibrium](https://unseel.com/chemistry/secular-equilibrium.html): Radioactive secular equilibrium is when a short-lived daughter's activity climbs to match its very long-lived parent's, so both decay at ... - [Radiocarbon Dating](https://unseel.com/chemistry/radiocarbon-dating.html): Radiocarbon dating measures the ratio of carbon-14 to carbon-12 in once-living organic material to determine the time since the organism ... - [Raman Spectroscopy](https://unseel.com/chemistry/raman-spectroscopy.html): Raman spectroscopy reads molecules from the inelastic scattering of laser light: ~1 in 10⁷ photons shift color by a vibrational quantum, ... - [Raoult's Law](https://unseel.com/chemistry/raoults-law.html): Raoult's law states that the vapor pressure of a solvent above a solution equals its mole fraction times its pure-liquid vapor pressure: ... - [Rate-Determining Step](https://unseel.com/chemistry/rate-determining-step.html): The rate-determining step (RDS) is the slowest elementary step in a multi-step mechanism — the one with the highest free-energy barrier. ... - [Reaction Enthalpy](https://unseel.com/chemistry/enthalpy-reaction.html): Heat exchanged at constant pressure. Products lower than reactants → exothermic (ΔH < 0). Products higher → endothermic (ΔH > 0). The ene... - [Reaction Rate](https://unseel.com/chemistry/reaction-rate.html): Change in concentration over time. Four levers control it: concentration, temperature, catalysts, and surface area. Thermodynamics tells ... - [Real vs Ideal Gas](https://unseel.com/chemistry/real-vs-ideal-gas.html): An ideal gas obeys PV = nRT exactly. Real gases deviate at high pressure (molecular volume matters) and low temperature (intermolecular a... - [Recrystallization](https://unseel.com/chemistry/recrystallization.html): Recrystallization purifies a solid by dissolving it in a minimum of hot solvent, filtering insoluble impurities, then cooling to crystall... - [Redox Reactions](https://unseel.com/chemistry/redox-reactions.html): 3D visualization of electron transfer in a redox reaction. Iron rusting: Fe atoms lose electrons (oxidation) while O₂ gains them (reducti... - [Reductive Amination](https://unseel.com/chemistry/reductive-amination.html): Reductive amination builds an amine from a carbonyl and an amine: condense to an imine, then a selective hydride reduces the C=N. One-pot... - [Resonance](https://unseel.com/chemistry/resonance-structures.html): Some molecules can't be drawn with one Lewis structure. Benzene's bonds aren't alternating single/double — they're all equivalent, an ave... - [Retrosynthetic Analysis](https://unseel.com/chemistry/retrosynthesis.html): Retrosynthetic analysis is E. J. Corey's logic for designing organic syntheses by working backward from a target molecule. The chemist id... - [Saponification](https://unseel.com/chemistry/saponification.html): Fat + NaOH breaks triglyceride ester bonds, releasing three fatty-acid soap molecules and glycerol. Soap's amphiphilic molecules form mic... - [Schrödinger Equation for Atoms](https://unseel.com/chemistry/schrodinger-equation-atoms.html): The non-relativistic time-independent Schrödinger equation for an atom is −(ℏ2/2m)∇2ψ + V(r)ψ = Eψ. For one ... - [Sharpless Epoxidation](https://unseel.com/chemistry/sharpless-epoxidation.html): The Sharpless epoxidation converts an allylic alcohol into a single enantiomer of a 2,3-epoxy alcohol using a titanium(IV) isopropoxide /... - [SN1 vs SN2](https://unseel.com/chemistry/sn1-sn2.html): Two paths for nucleophilic substitution. SN2 is one step, backside attack, inversion of stereochemistry. SN1 goes through a planar carboc... - [Sol-Gel Process](https://unseel.com/chemistry/sol-gel.html): The sol-gel process builds solid oxide glasses and ceramics from molecular precursors at low temperature: hydrolysis converts a metal alk... - [Solid-Electrolyte Interphase (SEI)](https://unseel.com/chemistry/sei-layer.html): The solid-electrolyte interphase (SEI) is a nanometers-thick passivating film that forms when the electrolyte is reduced on a battery ano... - [Solubility](https://unseel.com/chemistry/solubility.html): 3D visualization of salt (NaCl) dissolving in water. Water's polar molecules surround Na⁺ and Cl⁻ ions, pulling them from the crystal lat... - [Solubility Product (Ksp)](https://unseel.com/chemistry/solubility-product-ksp.html): The solubility product Ksp is the equilibrium constant for a slightly soluble salt dissolving into its ions: Ksp = [ions] at saturation. ... - [Solvay Process](https://unseel.com/chemistry/solvay-process.html): The Solvay process is the dominant industrial route to sodium carbonate (soda ash, Na₂CO₃). Saturated brine is saturated with ammonia in ... - [Solvent Extraction](https://unseel.com/chemistry/solvent-extraction.html): Solvent extraction separates a solute between two immiscible liquids by exploiting differences in solubility. The partition coefficient K... - [Spectrochemical Series](https://unseel.com/chemistry/spectrochemical-series.html): The spectrochemical series ranks ligands by how strongly they split a transition metal's d-orbitals. The size of that splitting, Δ, fixes... - [Standard Electrode Potential](https://unseel.com/chemistry/standard-electrode-potential.html): The standard electrode potential E° of a redox couple is the voltage of its half-cell, measured under standard conditions (1 M solute... - [States of Matter](https://unseel.com/chemistry/states-of-matter.html): 3D comparison of molecular behavior in three states. Solid: molecules locked in a rigid lattice, vibrating in place. Liquid: molecules sl... - [Steady-State Approximation](https://unseel.com/chemistry/steady-state-approximation.html): The steady-state approximation sets the net rate of change of a reactive intermediate to zero (d[I]/dt ≈ 0), letting you solve a multi-st... - [Steam Reforming](https://unseel.com/chemistry/steam-reforming.html): Steam reforming reacts methane with steam over a nickel catalyst at 700-1000°C to make syngas (H₂ + CO); the water-gas shift then squeeze... - [Step-Growth vs Chain-Growth Polymerization](https://unseel.com/chemistry/step-growth-polymerization.html): Step-growth and chain-growth are the two mechanisms that build polymers. Step-growth links any two molecules with reactive ends pairwise ... - [Sugar Structure](https://unseel.com/chemistry/sugar-structure.html): Glucose exists as both open chain and 6-membered ring. The ring closes with α or β configuration at C1. Starch uses α linkages (digestibl... - [Supercritical Fluids](https://unseel.com/chemistry/supercritical-fluid.html): A supercritical fluid is matter held above its critical temperature and pressure, where the gas–liquid boundary vanishes and a single pha... - [Supersaturation (Hot Ice)](https://unseel.com/chemistry/supersaturation.html): A supersaturated solution holds more dissolved solute than its equilibrium solubility allows. The excess stays dissolved only because no ... - [Surface Tension](https://unseel.com/chemistry/surface-tension.html): Surface tension γ is the energy per unit area of a liquid–vapor interface, equivalently the inward force per unit length along the surfac... - [Suzuki Coupling](https://unseel.com/chemistry/suzuki-coupling.html): The Suzuki-Miyaura reaction is a Pd(0)-catalyzed cross-coupling between an aryl halide (or pseudo-halide such as a triflate) and an aryl ... - [The Appel Reaction](https://unseel.com/chemistry/appel-reaction.html): The Appel reaction converts an alcohol into an alkyl halide using triphenylphosphine and a carbon tetrahalide (CBr₄, CCl₄) at room temper... - [The Baeyer-Villiger Oxidation](https://unseel.com/chemistry/baeyer-villiger-oxidation.html): The Baeyer-Villiger oxidation inserts an oxygen atom next to a ketone's carbonyl using a peroxyacid, converting ketones into esters (and ... - [The Bayer Process](https://unseel.com/chemistry/bayer-process.html): The Bayer process extracts pure alumina from bauxite by digesting the ore in hot concentrated caustic soda. Amphoteric Al(OH)₃ dissolves ... - [The Benzoin Condensation](https://unseel.com/chemistry/benzoin-condensation.html): The benzoin condensation joins two aldehyde molecules into an α-hydroxy ketone using a cyanide or N-heterocyclic carbene (NHC) catalyst. ... - [The Chloralkali Process](https://unseel.com/chemistry/chloralkali-process.html): The chloralkali process electrolyzes concentrated brine (NaCl solution) to make three commodity chemicals at once: chlorine gas at the an... - [The Claisen Rearrangement](https://unseel.com/chemistry/claisen-rearrangement.html): The Claisen rearrangement is the thermal [3,3]-sigmatropic shift of an allyl vinyl ether into a γ,δ-unsaturated carbonyl. It runs through... - [The Claus Process](https://unseel.com/chemistry/claus-process.html): The Claus process recovers elemental sulfur from hydrogen sulfide in two stages: a thermal step that burns one-third of the H₂S to SO₂, t... - [The Clemmensen Reduction](https://unseel.com/chemistry/clemmensen-reduction.html): The Clemmensen reduction converts a ketone or aldehyde all the way down to a methylene (CH₂) using zinc amalgam and concentrated hydrochl... - [The Contact Process](https://unseel.com/chemistry/contact-process.html): The Contact Process makes sulfuric acid by catalytically oxidizing SO₂ to SO₃ over vanadium(V) oxide, then absorbing SO₃ into concentrate... - [The Cope Rearrangement](https://unseel.com/chemistry/cope-rearrangement.html): The Cope rearrangement is the thermal [3,3]-sigmatropic rearrangement of a 1,5-diene: one σ C–C bond breaks, a new one forms six atoms aw... - [The Finkelstein Reaction](https://unseel.com/chemistry/finkelstein-reaction.html): The Finkelstein reaction swaps one halide for another on an alkyl substrate by an SN2 mechanism, driving a normally unfavorable equilibri... - [The Fischer Indole Synthesis](https://unseel.com/chemistry/fischer-indole-synthesis.html): The Fischer indole synthesis builds an indole ring from an arylhydrazine and a ketone or aldehyde under acid. The key step is a [3,3]-sig... - [The Fischer-Tropsch Process](https://unseel.com/chemistry/fischer-tropsch-process.html): The Fischer-Tropsch process polymerizes syngas (CO + H₂) into liquid hydrocarbons over an iron or cobalt catalyst. CO dissociates on the ... - [The Gabriel Synthesis](https://unseel.com/chemistry/gabriel-synthesis.html): The Gabriel synthesis makes a clean primary amine (RNH₂) from a primary alkyl halide by masking nitrogen inside phthalimide. Because the ... - [The Gibbs Phase Rule](https://unseel.com/chemistry/gibbs-phase-rule.html): The Gibbs phase rule counts the degrees of freedom of a system at equilibrium: F = C − P + 2. It tells you how many intensive variables (... - [The Haber-Bosch Process](https://unseel.com/chemistry/haber-bosch-process.html): The Haber-Bosch process combines atmospheric nitrogen and hydrogen over a promoted iron catalyst at 400-500 °C and 150-300 bar to make am... - [The Hall-Heroult Process](https://unseel.com/chemistry/hall-heroult-process.html): The Hall-Heroult process makes aluminum by electrolyzing alumina (Al₂O₃) dissolved in molten cryolite (Na₃AlF₆) at ~960 °C. Carbon anodes... - [The Hammett Equation](https://unseel.com/chemistry/hammett-equation.html): The Hammett equation, log(k/k₀) = σρ, predicts how a ring substituent shifts a reaction's rate or equilibrium. σ measures the substituent... - [The Hofmann Elimination](https://unseel.com/chemistry/hofmann-elimination.html): The Hofmann elimination converts an amine into the LESS substituted alkene by exhaustive methylation to a bulky quaternary ammonium salt,... - [The Hofmann Rearrangement](https://unseel.com/chemistry/hofmann-rearrangement.html): The Hofmann rearrangement converts a primary amide (RCONH₂) into a primary amine (RNH₂) with one fewer carbon, using Br₂ and a strong bas... - [The Jahn-Teller Effect](https://unseel.com/chemistry/jahn-teller-effect.html): The Jahn-Teller effect is the theorem that any non-linear molecule sitting in an orbitally degenerate electronic state will spontaneously... - [The Knoevenagel Condensation](https://unseel.com/chemistry/knoevenagel-condensation.html): The Knoevenagel condensation couples an aldehyde or ketone with an active-methylene compound (malonate, cyanoacetate, Meldrum's acid) und... - [The Kolbe-Schmitt Reaction](https://unseel.com/chemistry/kolbe-schmitt-reaction.html): The Kolbe-Schmitt reaction carboxylates a metal phenoxide with pressurized CO₂ to give ortho-hydroxybenzoic acid — the industrial route t... - [The Kroll Process](https://unseel.com/chemistry/kroll-process.html): The Kroll process makes titanium metal by reducing titanium tetrachloride (TiCl₄) with molten magnesium under argon at ~900 °C, yielding ... - [The Malonic Ester Synthesis](https://unseel.com/chemistry/malonic-ester-synthesis.html): The malonic ester synthesis converts diethyl malonate into a substituted acetic acid. Deprotonate the pKa-13 α-CH₂, alkylate the enolate ... - [The McMurry Coupling](https://unseel.com/chemistry/mcmurry-coupling.html): The McMurry coupling stitches two carbonyl groups (aldehydes or ketones) into a single C=C double bond using low-valent titanium, generat... - [The Mitsunobu Reaction](https://unseel.com/chemistry/mitsunobu-reaction.html): The Mitsunobu reaction couples an alcohol with an acidic pronucleophile using triphenylphosphine and a dialkyl azodicarboxylate (DEAD/DIA... - [The Mond Process](https://unseel.com/chemistry/mond-process.html): The Mond process refines nickel by a temperature swing: crude metal reacts with carbon monoxide near 50 °C to form volatile nickel tetrac... - [The Perkin Reaction](https://unseel.com/chemistry/perkin-reaction.html): The Perkin reaction condenses an aromatic aldehyde with an acid anhydride and a carboxylate base (sodium acetate) to make an (E)-cinnamic... - [The Pinacol Rearrangement](https://unseel.com/chemistry/pinacol-rearrangement.html): The pinacol rearrangement turns a 1,2-diol into a ketone: acid protonates one hydroxyl, water leaves to give a carbocation, and a neighbo... - [The Reformatsky Reaction](https://unseel.com/chemistry/reformatsky-reaction.html): The Reformatsky reaction turns an α-halo ester into a zinc enolate that adds to an aldehyde or ketone, giving a β-hydroxy ester. Zinc's m... - [The Reimer-Tiemann Reaction](https://unseel.com/chemistry/reimer-tiemann-reaction.html): The Reimer-Tiemann reaction installs an aldehyde ortho to a phenol using chloroform and strong base. Hydroxide deprotonates CHCl₃ to a tr... - [The Robinson Annulation](https://unseel.com/chemistry/robinson-annulation.html): The Robinson annulation stitches a new six-membered ring onto a ketone by chaining a Michael addition to an intramolecular aldol condensa... - [The Rosenmund Reduction](https://unseel.com/chemistry/rosenmund-reduction.html): The Rosenmund reduction converts an acyl chloride to an aldehyde by hydrogenation over palladium on barium sulfate that has been delibera... - [The Sabatier Reaction](https://unseel.com/chemistry/sabatier-reaction.html): The Sabatier reaction hydrogenates carbon dioxide to methane and water over a nickel catalyst — CO₂ + 4H₂ → CH₄ + 2H₂O, ΔH ≈ −165 kJ/mol.... - [The Sandmeyer Reaction](https://unseel.com/chemistry/sandmeyer-reaction.html): The Sandmeyer reaction swaps an arene's diazonium group (–N₂⁺) for a chloride, bromide, or cyanide using a copper(I) salt. It runs throug... - [The Simmons-Smith Reaction](https://unseel.com/chemistry/simmons-smith-reaction.html): The Simmons-Smith reaction turns an alkene into a cyclopropane using a zinc carbenoid (ICH₂ZnI) made from CH₂I₂ and a Zn-Cu couple. The C... - [The Sonogashira Coupling](https://unseel.com/chemistry/sonogashira-coupling.html): The Sonogashira coupling joins a terminal alkyne to an aryl or vinyl halide using a palladium(0) catalyst and a copper(I) co-catalyst wit... - [The Stille Coupling](https://unseel.com/chemistry/stille-coupling.html): The Stille coupling joins an organotin reagent (R-SnBu₃) to an organic halide or triflate using a palladium catalyst. It runs under neutr... - [The Swern Oxidation](https://unseel.com/chemistry/swern-oxidation.html): The Swern oxidation converts a primary alcohol to an aldehyde or a secondary alcohol to a ketone using DMSO activated by oxalyl chloride,... - [The Ullmann Reaction](https://unseel.com/chemistry/ullmann-reaction.html): The Ullmann reaction couples two aryl halides over copper to forge a biaryl C–C bond. Classic conditions use stoichiometric copper at 200... - [The Van 't Hoff Equation](https://unseel.com/chemistry/van-t-hoff-equation.html): The Van 't Hoff equation links an equilibrium constant to temperature through the reaction enthalpy: d(ln K)/dT = ΔH°/RT². Plot ln K agai... - [The Wacker Oxidation](https://unseel.com/chemistry/wacker-oxidation.html): The Wacker oxidation converts a terminal alkene into a methyl ketone using catalytic PdCl₂, a CuCl₂/O₂ reoxidant, water, and HCl. It is t... - [The Wolff-Kishner Reduction](https://unseel.com/chemistry/wolff-kishner-reduction.html): The Wolff-Kishner reduction converts a ketone or aldehyde carbonyl all the way down to a CH₂ methylene using hydrazine (N₂H₄) and a stron... - [The Woodward-Hoffmann Rules](https://unseel.com/chemistry/woodward-hoffmann-rules.html): The Woodward-Hoffmann rules predict whether a pericyclic reaction is allowed by conservation of orbital symmetry. Thermal 4n-electron sys... - [Thermochemistry](https://unseel.com/chemistry/thermochemistry.html): 3D energy diagrams comparing exothermic and endothermic reactions. Exothermic: products are lower energy than reactants, releasing heat (... - [Thermochromism](https://unseel.com/chemistry/thermochromism.html): Thermochromism is the reversible change in a material's color with temperature, driven by shifts in molecular structure, metal-ion spin s... - [Thin-Layer Chromatography](https://unseel.com/chemistry/thin-layer-chromatography.html): Thin-layer chromatography (TLC) separates a mixture on a silica-coated plate as solvent wicks up by capillary action. Each spot's Rf = di... - [Third Law of Thermodynamics](https://unseel.com/chemistry/third-law-entropy.html): The Third Law of Thermodynamics states the entropy of a perfect crystal approaches zero as temperature approaches absolute zero (0 K, -27... - [Transition Metals](https://unseel.com/chemistry/transition-metals.html): Transition metals are the d-block elements (groups 3-12, Sc-Zn through Ac-Hg). They show variable oxidation states because (n-1)d and ns ... - [Transition State Theory](https://unseel.com/chemistry/transition-state-theory.html): Transition state theory (TST) treats the activated complex at the barrier top as a quasi-equilibrium species and predicts rate constants ... - [Triple Point](https://unseel.com/chemistry/triple-point.html): The triple point is the single temperature and pressure at which the solid, liquid, and gas phases of a substance coexist in equilibrium.... - [Tyndall Effect](https://unseel.com/chemistry/tyndall-effect.html): The Tyndall effect is the scattering of a beam of light by particles in a colloid, making the beam's path visible from the side. Because ... - [UV-Visible Spectroscopy](https://unseel.com/chemistry/uv-vis-spectroscopy.html): UV-visible spectroscopy passes light from 200 to 800 nm through a sample and records the fraction absorbed. Absorption corresponds to ele... - [Valence Bond Theory](https://unseel.com/chemistry/valence-bond-theory.html): Valence Bond Theory (VB) describes covalent bonds as forming when two atoms each contribute a half-filled atomic orbital that overlaps in... - [Van der Waals Equation](https://unseel.com/chemistry/van-der-waals-equation.html): The van der Waals equation (P + a n²/V²)(V − nb) = nRT corrects the ideal-gas law by adding a finite-volume term b for molecular size and... - [Vulcanization](https://unseel.com/chemistry/vulcanization.html): Vulcanization is the heat-driven process in which sulfur forms covalent cross-links between rubber's polymer chains, converting soft, sti... - [Water Molecule](https://unseel.com/chemistry/water-molecule.html): 3D model of a water molecule showing bent molecular geometry with polar bonds. - [Williamson Ether Synthesis](https://unseel.com/chemistry/williamson-ether-synthesis.html): The Williamson ether synthesis makes an ether by an SN2 reaction: an alkoxide nucleophile attacks a primary alkyl halide, displacing hali... - [Wittig Reaction](https://unseel.com/chemistry/wittig-reaction.html): The Wittig reaction converts a carbonyl R₂C=O and a phosphorus ylide R₃P=CR'₂ into an alkene R₂C=CR'₂ plus triphenylphosphine oxide (Ph₃P... - [X-Ray Diffraction (XRD)](https://unseel.com/chemistry/x-ray-diffraction.html): X-ray diffraction (XRD) is the analytical technique in which X-rays of wavelength comparable to interatomic spacing scatter from a period... - [Zeolites](https://unseel.com/chemistry/zeolite.html): Zeolites are crystalline aluminosilicate frameworks riddled with uniform, molecular-sized pores (typically 0.3–1.0 nm) built from corner-... - [Zero, First, and Second Order Kinetics](https://unseel.com/chemistry/zero-first-second-order-kinetics.html): Reaction order specifies how rate depends on concentration. A zero-order reaction proceeds at a constant rate that ignores concentration.... - [Ziegler-Natta Polymerization](https://unseel.com/chemistry/ziegler-natta.html): Ziegler-Natta polymerization is the catalytic addition of α-olefins (ethylene, propylene, 1-butene) to a transition-metal-alkyl bond at l... ## Astronomy Planets, stars, black holes, and the cosmos. 490 concepts. - [Astronomy index](https://unseel.com/astronomy.html): All astronomy concepts - [21 cm Cosmology](https://unseel.com/astronomy/hydrogen-21cm-cosmology.html): 21 cm cosmology uses the spin-flip radio line of neutral hydrogen to map the cosmic dark ages and reionization — billions of clouds, reds... - [Aberration of Starlight](https://unseel.com/astronomy/stellar-aberration.html): Aberration of starlight is the small apparent tilt in a star's position caused by Earth's velocity combined with the finite speed of ligh... - [Accretion Disk](https://unseel.com/astronomy/accretion-disk.html): An accretion disk is a flattened, rotating structure in which gas slowly spirals onto a central body. Viscous stresses transport angular ... - [ADAF — Advection-Dominated Accretion Flow](https://unseel.com/astronomy/adaf-accretion.html): An advection-dominated accretion flow (ADAF) is the hot, puffy, radiatively inefficient mode a black hole feeds in below ~0.01 of the Edd... - [Adaptive Optics](https://unseel.com/astronomy/adaptive-optics.html): A laser creates an artificial star in the upper atmosphere. Fast sensors measure how it shimmers, and a deformable mirror reshapes 1,000 ... - [AGN Feedback](https://unseel.com/astronomy/agn-feedback.html): AGN feedback is the process where a galaxy's central black hole injects energy into surrounding gas via jets and winds, heating and expel... - [AGN Unified Model](https://unseel.com/astronomy/agn-unified-model.html): The AGN unified model holds that Seyferts, quasars, radio galaxies, and blazars are the same central engine — a supermassive black hole, ... - [Airmass & Atmospheric Extinction](https://unseel.com/astronomy/airmass-extinction.html): Airmass is how much atmosphere starlight crosses; atmospheric extinction is the dimming and reddening that path causes. Airmass = sec(z);... - [Algol Paradox](https://unseel.com/astronomy/algol-paradox.html): The Algol paradox is the apparent contradiction that in some close binaries the less massive star is the more evolved one — a subgiant or... - [Analemma](https://unseel.com/astronomy/analemma.html): An analemma is the figure-8 path the Sun traces in the sky when photographed at the same clock time across a year — caused by axial tilt ... - [Angular Diameter Distance](https://unseel.com/astronomy/angular-diameter-distance.html): Angular diameter distance d_A relates an object's physical size to its angular size: d_A = d_C/(1+z). It is non-monotonic — peaking near ... - [Anti-de Sitter Space](https://unseel.com/astronomy/anti-de-sitter.html): Anti-de Sitter space is the maximally symmetric solution of Einstein's equations with negative cosmological constant Λ<0. Its timelike bo... - [Aperture Photometry](https://unseel.com/astronomy/aperture-photometry.html): Aperture photometry measures a star's brightness by summing the light inside a circle, then subtracting the sky background sampled in a s... - [Aperture Synthesis](https://unseel.com/astronomy/aperture-synthesis.html): Aperture synthesis combines the signals from many separated radio antennas to mimic a single telescope as large as the maximum spacing be... - [Apparent Retrograde Motion](https://unseel.com/astronomy/retrograde-motion.html): Apparent retrograde motion is when a planet appears to reverse direction against the stars — an illusion caused by faster Earth overtakin... - [Artemis II Free-Return Trajectory](https://unseel.com/astronomy/artemis-free-return-trajectory.html): A free-return trajectory designed so that, with no main propulsion, gravity alone returns the spacecraft to Earth. - [Asteroid Belt · Rocky Debris](https://unseel.com/astronomy/asteroid-belt.html): The Asteroid Belt explained in 3D — fly through the rocky debris between Mars and Jupiter, see Ceres, and learn why the belt is mostly em... - [Asteroid Rubble Pile](https://unseel.com/astronomy/asteroid-rubble-pile.html): A rubble-pile asteroid is a gravitationally bound aggregate of fragments, not a solid rock. Bulk densities of 1–2 g/cm³, the 2.2-hour spi... - [Asteroseismology](https://unseel.com/astronomy/asteroseismology.html): Asteroseismology reads the oscillation modes of stars to map their interiors — the same trick that lets a bell-ringer infer the shape of ... - [Astrometry Method](https://unseel.com/astronomy/astrometry-method.html): The astrometry method detects exoplanets by precisely measuring a star's apparent position in the sky over time. A planet's gravity makes... - [Asymptotic Giant Branch](https://unseel.com/astronomy/asymptotic-giant-branch.html): After helium-core fusion ends, sun-like stars swell again, pulse thermally, and shed their outer layers through massive winds. The AGB ph... - [Atmospheric Escape](https://unseel.com/astronomy/atmospheric-escape.html): Atmospheric escape is the loss of gas from a planet's upper atmosphere into space, driven by thermal motion, stellar ultraviolet and X-ra... - [Atmospheric Seeing](https://unseel.com/astronomy/atmospheric-seeing.html): Atmospheric seeing is the blurring and twinkling of starlight caused by turbulence in Earth's air, which scrambles the incoming wavefront... - [Aurora Borealis](https://unseel.com/astronomy/aurora-borealis.html): The northern lights — charged particles from the sun colliding with Earth atmosphere, guided by the magnetic field, exciting oxygen and n... - [Axial Tilt & Seasons](https://unseel.com/astronomy/axial-tilt-seasons.html): Axial tilt and seasons: Earth's 23.4° tilt, not its distance from the Sun, drives the seasons by changing how directly and how long sunli... - [Axion Dark Matter](https://unseel.com/astronomy/axion-dark-matter.html): The axion is a hypothetical ultralight pseudoscalar boson invented in 1977 to solve the strong CP problem of QCD. It is also one of the b... - [B-Mode Polarization](https://unseel.com/astronomy/b-mode-polarization.html): B-mode polarization is the curl-like, parity-odd component of the cosmic microwave background's linear polarization. Because density pert... - [Baryogenesis](https://unseel.com/astronomy/baryogenesis.html): Baryogenesis is the set of physical mechanisms that produced a tiny excess of matter over antimatter in the early universe (η ≈ 6×10⁻¹⁰),... - [Baryon Acoustic Oscillations](https://unseel.com/astronomy/baryon-acoustic-oscillations.html): Before recombination, pressure waves in the primordial plasma rang at a specific scale. When plasma froze into atoms, the wavefronts froz... - [Be Star & Decretion Disk](https://unseel.com/astronomy/be-star.html): A Be star is a rapidly rotating B-type star, spinning at 70–100 percent of its critical breakup velocity, that intermittently sheds gas f... - [Bekenstein Bound](https://unseel.com/astronomy/bekenstein-bound.html): The Bekenstein bound is a universal upper limit on the entropy that can be contained inside a spherical region of given radius and energy... - [Betelgeuse's Great Dimming](https://unseel.com/astronomy/betelgeuse-dimming.html): In 2019-2020, Betelgeuse dimmed 60% — the most dramatic brightness drop ever seen in a naked-eye star. Astronomers wondered if supernova ... - [Big Bang](https://unseel.com/astronomy/big-bang.html): The Big Bang is the origin of the universe — 13.8 billion years ago, all of space, time, and matter expanded from an infinitely hot, dens... - [Big Bang Nucleosynthesis](https://unseel.com/astronomy/big-bang-nucleosynthesis.html): Big Bang nucleosynthesis is the cosmic fusion epoch from roughly one second to three minutes after the Big Bang, when the universe cooled... - [Big Rip](https://unseel.com/astronomy/big-rip.html): If dark energy's density grows with time (phantom energy), the expansion accelerates without bound. Galaxies unravel, then solar systems,... - [Binary Black Hole Merger](https://unseel.com/astronomy/binary-black-hole-merger.html): A binary black hole merger is the gravitational-wave-driven coalescence of two black holes through three phases — inspiral, merger, and r... - [Binary Stars](https://unseel.com/astronomy/binary-stars.html): More than half of stars in the Milky Way are in multi-star systems. Visual, spectroscopic, and eclipsing binaries let astronomers measure... - [Biosignatures](https://unseel.com/astronomy/biosignature.html): A biosignature is a gas, surface feature, or seasonal pattern in a planet's spectrum that could only plausibly be produced by life. The g... - [Black Hole](https://unseel.com/astronomy/black-hole.html): A black hole visualized in 3D — event horizon, accretion disk, photon sphere, gravitational lensing, and singularity. Where spacetime ends. - [Black Hole Ringdown](https://unseel.com/astronomy/black-hole-ringdown.html): Black hole ringdown is the final phase of a black-hole merger, in which the deformed remnant sheds its asymmetries as exponentially dampe... - [Blandford-Znajek Process](https://unseel.com/astronomy/blandford-znajek-process.html): The Blandford-Znajek process extracts rotational energy from a spinning black hole by threading its horizon with magnetic flux. Frame-dra... - [Blazar](https://unseel.com/astronomy/blazar.html): A blazar is an active galactic nucleus whose relativistic jet happens to be pointed within a few degrees of Earth. Doppler-boosted to ext... - [Blue Straggler](https://unseel.com/astronomy/blue-straggler.html): A blue straggler is a star in a coeval cluster that lies above and to the left of the main-sequence turnoff — i.e., is more massive, hott... - [Bok Globule](https://unseel.com/astronomy/bok-globule.html): A Bok globule is a small (≤ 1 pc), dense, isolated dark cloud — opaque against the bright nebulae behind it — that often hosts the format... - [Bondi Accretion](https://unseel.com/astronomy/bondi-accretion.html): Bondi accretion is the spherical infall of ambient gas onto a compact object. The rate scales as Ṁ ≈ 4π λ (GM)² ρ∞ / c_s³ — density times... - [Boson Star](https://unseel.com/astronomy/boson-star.html): A boson star is a hypothetical compact object made of a self-gravitating Bose-Einstein condensate of bosons, held up by quantum (gradient... - [Brown Dwarf](https://unseel.com/astronomy/brown-dwarf.html): Between 13 and 80 Jupiter masses, an object is too heavy to be a planet but too light to fuse hydrogen. Brown dwarfs glow from leftover g... - [Bullet Cluster](https://unseel.com/astronomy/bullet-cluster.html): The Bullet Cluster (1E 0657-558) is a pair of galaxy clusters mid-collision in which gravitational lensing reveals that most of the mass ... - [Carbon Stars](https://unseel.com/astronomy/carbon-stars.html): Carbon stars are cool red giants whose photospheres contain more carbon than oxygen (C/O > 1) — the reverse of the cosmic norm. Third dre... - [Carrington Event & Space Weather](https://unseel.com/astronomy/carrington-event.html): The Carrington Event of September 1859 was the most intense geomagnetic storm in recorded history: a coronal mass ejection crossed the Su... - [Cataclysmic Variable](https://unseel.com/astronomy/cataclysmic-variable.html): A cataclysmic variable is a white dwarf accreting from a Roche-lobe-filling companion through a disk. Orbital periods of just hours, dwar... - [CCD Detectors in Astronomy](https://unseel.com/astronomy/ccd-astronomy.html): A CCD detector in astronomy is a silicon chip that converts incoming photons into electric charge, storing them in a grid of pixel wells ... - [Celestial Sphere](https://unseel.com/astronomy/celestial-sphere.html): The celestial sphere is an imaginary dome of infinite radius onto which we project all stars, letting astronomers map sky positions with ... - [Centaurs](https://unseel.com/astronomy/centaurs.html): Centaurs are icy small bodies on unstable, giant-planet-crossing orbits between Jupiter and Neptune — a short-lived transit population, w... - [Cepheid Distance Ladder](https://unseel.com/astronomy/cepheid-distance-ladder.html): Cepheids have a precise period-luminosity relation — time their pulsation and you know their true brightness, and thus distance. Parallax... - [Ceres](https://unseel.com/astronomy/ceres-dwarf.html): Ceres contains a third of the asteroid belt's total mass yet is still small enough to fit inside Texas. Bright carbonate deposits and a p... - [Chandrasekhar Limit](https://unseel.com/astronomy/chandrasekhar-limit.html): Above 1.44 solar masses, electron degeneracy pressure can't support a white dwarf against gravity. Cross the limit — by accretion from a ... - [Chromosphere](https://unseel.com/astronomy/chromosphere.html): The chromosphere is the Sun's middle atmosphere — 2000–10000 km above the photosphere, temperature rising 4000 K → 25000 K. Visible as a ... - [Circumbinary Planet](https://unseel.com/astronomy/circumbinary-planet.html): A circumbinary planet orbits both members of a binary star system. About 13 are confirmed — beginning with Kepler-16b in 2011 — and they ... - [Circumgalactic Medium](https://unseel.com/astronomy/circumgalactic-medium.html): The circumgalactic medium (CGM) is the diffuse, multiphase halo of gas surrounding a galaxy, reaching from the edge of the disk out to th... - [Circumplanetary Disk](https://unseel.com/astronomy/circumplanetary-disk.html): A circumplanetary disk is a rotating disk of gas and dust that forms around a young giant planet while it is still accreting from its par... - [Clathrate Hydrates](https://unseel.com/astronomy/clathrate-hydrate.html): A clathrate hydrate is a crystalline solid in which a hydrogen-bonded cage of water molecules physically traps a guest gas — methane, CO₂... - [CMB B-Modes](https://unseel.com/astronomy/cmb-b-modes.html): CMB B-modes are the curl-like, divergence-free component of the cosmic microwave background's polarization. Density perturbations can onl... - [CMB Spectral Distortions](https://unseel.com/astronomy/cmb-spectral-distortions.html): CMB spectral distortions are tiny departures of the cosmic microwave background from a perfect 2.725 K blackbody — chiefly the μ-type and... - [CNO Cycle](https://unseel.com/astronomy/cno-cycle.html): The CNO cycle fuses four hydrogen nuclei into one helium-4 by passing them through a chain of carbon, nitrogen, and oxygen intermediates ... - [Color Index](https://unseel.com/astronomy/color-index.html): Color index is a star's brightness in one filter minus another (usually B−V). A small or negative value means a hot blue star; a large va... - [Comet](https://unseel.com/astronomy/comet.html): A comet is a dirty snowball of ice, rock, and dust left over from the solar system's formation. As it approaches the Sun, sunlight heats ... - [Comet Tails (Ion vs Dust)](https://unseel.com/astronomy/comet-tails.html): A comet grows two tails — a yellowish dust tail that curves along the orbit and a straight blue ion tail blown back by the solar wind. Bo... - [Common Envelope Evolution](https://unseel.com/astronomy/common-envelope-evolution.html): Common envelope evolution: one star swells, engulfs its companion, and drag drains orbital energy in roughly 1000 years, ejecting the sha... - [Comoving Distance](https://unseel.com/astronomy/comoving-distance.html): Comoving distance D_C is the integral of c/H(z) along the line of sight. It strips the cosmic stretch out of separation, so two galaxies ... - [Contact Binary](https://unseel.com/astronomy/contact-binary.html): A contact binary is a pair of stars orbiting so close they overflow their Roche lobes and share a single gaseous envelope, taking on merg... - [Convective Overshoot](https://unseel.com/astronomy/convective-overshoot.html): Convective overshoot is the inertial penetration of buoyant convective blobs past the formal convective boundary into the stable radiativ... - [Core Accretion](https://unseel.com/astronomy/core-accretion.html): Core accretion is the leading theory of giant-planet formation: dust grows to planetesimals, which build a solid core of roughly ten Eart... - [Coronagraph Imaging](https://unseel.com/astronomy/coronagraph-imaging.html): Coronagraphs block on-axis starlight so faint companions and exoplanets become visible. Lyot, vortex, and phase-mask designs reach contra... - [Coronal Heating Problem](https://unseel.com/astronomy/corona-heating-problem.html): The Sun's photosphere is 5778 K but its corona is 1–3 million K — a 200x temperature inversion going outward. Two leading mechanisms — na... - [Coronal Mass Ejection](https://unseel.com/astronomy/coronal-mass-ejection.html): A coronal mass ejection is an eruption of magnetized plasma from the Sun's corona — typically 10¹² to 10¹³ kg of solar material accelerat... - [Coronal Rain](https://unseel.com/astronomy/coronal-rain.html): Coronal rain is the condensation of hot (~10⁶ K) coronal plasma into cool (~10⁴ K), dense blobs that fall back along magnetic loops towar... - [Cosmic Dawn & First Light](https://unseel.com/astronomy/cosmic-dawn.html): Cosmic dawn is the epoch around 100–250 million years after the Big Bang when the first stars ignited and ended the cosmic dark ages. The... - [Cosmic Microwave Background](https://unseel.com/astronomy/cosmic-microwave-background.html): When the universe cooled enough for atoms to form at 380,000 years old, light broke free. We see that ancient flash today as the CMB — 2.... - [Cosmic Neutrino Background](https://unseel.com/astronomy/cosmic-neutrino-background.html): The cosmic neutrino background is a sea of relic neutrinos that decoupled from matter one second after the Big Bang — older than the CMB,... - [Cosmic Shear](https://unseel.com/astronomy/cosmic-shear.html): Cosmic shear is the percent-level weak gravitational lensing distortion that every distant galaxy suffers from the entire dark-matter dis... - [Cosmic String](https://unseel.com/astronomy/cosmic-string.html): A cosmic string is a one-dimensional topological defect frozen in by a symmetry-breaking phase transition in the early universe. Cross-se... - [Cosmic Strings](https://unseel.com/astronomy/cosmic-strings.html): Cosmic strings are hypothetical one-dimensional topological defects in spacetime, frozen in by symmetry-breaking phase transitions in the... - [Cosmic Voids](https://unseel.com/astronomy/cosmic-voids.html): A cosmic void is a vast, underdense bubble of the universe — tens to hundreds of millions of light-years across — bounded by the filament... - [Cosmic Web](https://unseel.com/astronomy/cosmic-web.html): Galaxies aren't uniformly distributed — they lie along filaments, sheets, and nodes separated by vast voids. This cosmic web grew from ti... - [Cosmological Constant](https://unseel.com/astronomy/cosmological-constant.html): Einstein added Λ to his equations to keep the universe static, then called it his 'greatest blunder' when expansion was discovered. Super... - [Cosmological Perturbation Theory](https://unseel.com/astronomy/cosmological-perturbation.html): Cosmological perturbation theory is the linear treatment of small density, velocity and metric fluctuations δρ/ρ ≪ 1 on a smooth FLRW bac... - [Cosmological Redshift](https://unseel.com/astronomy/redshift.html): As space itself expands, light traveling through it stretches — wavelengths grow, colors shift redward. Redshift grows linearly with dist... - [Crab Pulsar](https://unseel.com/astronomy/crab-pulsar.html): The Crab Pulsar (PSR B0531+21) is a young 33-millisecond neutron star at the centre of the Crab Nebula, the remnant of SN 1054 recorded b... - [Cryovolcanism](https://unseel.com/astronomy/cryovolcanism.html): Cryovolcanism is volcanism on frozen worlds: instead of molten silicate rock, the magma is liquid water, ammonia, or methane slush that i... - [Dark Energy](https://unseel.com/astronomy/dark-energy.html): The universe isn't just expanding — it's accelerating. Some unknown repulsive component makes up 68% of the total cosmic content, overtak... - [Dark Matter Halo](https://unseel.com/astronomy/dark-matter-halo.html): Every galaxy is embedded in a roughly spherical halo of dark matter, extending far beyond its visible disk. The halo's mass dominates the... - [de Sitter Space](https://unseel.com/astronomy/de-sitter-space.html): de Sitter space is the maximally symmetric vacuum solution of Einstein's equations with a positive cosmological constant. Empty space who... - [Debris Disk](https://unseel.com/astronomy/debris-disk.html): A debris disk is a ring of dust and colliding planetesimals around a main-sequence star — the leftover rubble of planet formation. The du... - [Diffraction-Limited Telescope](https://unseel.com/astronomy/diffraction-limited-telescope.html): A diffraction-limited telescope is one whose sharpness is capped only by the wave nature of light, with angular resolution θ ≈ 1.22 λ/D s... - [Direct Imaging of Exoplanets](https://unseel.com/astronomy/direct-imaging-exoplanet.html): Direct imaging detects exoplanets by literally photographing them — blocking the star's light with a coronagraph and revealing the much f... - [Drake Equation](https://unseel.com/astronomy/drake-equation.html): The Drake equation N = R* × f_p × n_e × f_l × f_i × f_c × L is a seven-factor framework for estimating the number of communicating civili... - [Dwarf Galaxy](https://unseel.com/astronomy/dwarf-galaxy.html): A dwarf galaxy is a gravitationally bound stellar system with less than 10⁹ solar masses of stars — a thousand times lighter than the Mil... - [Dyson Sphere](https://unseel.com/astronomy/dyson-sphere.html): A Dyson sphere is a hypothetical megastructure that surrounds a star to capture a large fraction of its luminosity. A complete enclosure ... - [Earthshine](https://unseel.com/astronomy/earthshine.html): Earthshine is the faint glow on the dark portion of a crescent Moon — sunlight that bounced off Earth, lit the lunar night side, and refl... - [Echelle Spectrograph](https://unseel.com/astronomy/echelle-spectrograph.html): An echelle spectrograph is a high-resolution instrument that fans starlight into dozens of overlapping diffraction orders, then a cross-d... - [Eclipsing Binary](https://unseel.com/astronomy/eclipsing-binary.html): An eclipsing binary is a pair of stars whose orbital plane is edge-on to Earth, producing periodic brightness dips as each star passes in... - [Eddington Luminosity](https://unseel.com/astronomy/eddington-luminosity.html): The Eddington luminosity is the brightness ceiling at which radiation pressure exactly cancels gravity. The formula is breathtakingly sim... - [Einstein Ring](https://unseel.com/astronomy/einstein-ring.html): An Einstein ring is the complete circle of light that appears when a distant source, a foreground mass, and the observer are aligned almo... - [Electron Degeneracy Pressure](https://unseel.com/astronomy/electron-degeneracy-pressure.html): Electron degeneracy pressure is the resistance to compression that arises when electrons are squeezed so densely that Pauli's exclusion p... - [Elliptical Galaxy](https://unseel.com/astronomy/elliptical-galaxy.html): Elliptical galaxies are smooth, ellipsoidal stellar systems dominated by old red stars with little gas or dust. Subclassified E0 (round) ... - [Enceladus Geysers](https://unseel.com/astronomy/enceladus-geysers.html): Enceladus's south pole erupts 100+ water-ice plumes through tiger-stripe fractures, at speeds that escape the moon entirely. They source ... - [Equation of Time](https://unseel.com/astronomy/equation-of-time.html): The equation of time is the difference between apparent solar time (the sundial) and mean solar time (your watch) — swinging from about -... - [Equatorial Coordinate System](https://unseel.com/astronomy/coordinate-equatorial.html): The equatorial coordinate system is the sky's latitude and longitude: declination measures angle north or south of the celestial equator,... - [Ergosphere](https://unseel.com/astronomy/ergosphere.html): The ergosphere is the region outside a rotating Kerr black hole's event horizon where frame dragging is so extreme that no observer can r... - [Eternal Inflation](https://unseel.com/astronomy/eternal-inflation.html): Quantum fluctuations during inflation cause some patches to keep inflating forever. Bubbles of 'normal' universe nucleate and grow inside... - [Europa's Ocean](https://unseel.com/astronomy/europa-ocean.html): Beneath Europa's icy crust lies an ocean containing more water than all of Earth's combined. Tidal heating keeps it liquid — and likely h... - [Event Horizon](https://unseel.com/astronomy/event-horizon.html): The boundary around a black hole beyond which nothing — not even light — can escape. Show the Schwarzschild radius (r_s = 2GM/c²), the wa... - [Event Horizon Telescope](https://unseel.com/astronomy/event-horizon-telescope.html): The Event Horizon Telescope is an Earth-sized virtual radio telescope built by very-long-baseline interferometry, synchronising a global ... - [Exomoon](https://unseel.com/astronomy/exomoon.html): An exomoon is a natural satellite of an exoplanet. With nearly 5,800 confirmed exoplanets but zero confirmed exomoons as of 2025, the hun... - [Exoplanet](https://unseel.com/astronomy/exoplanet.html): An exoplanet is any planet orbiting a star beyond our own Sun. Show the transit method: as a planet passes in front of its star, it block... - [Exoplanet Biosignatures](https://unseel.com/astronomy/exoplanet-biosignatures.html): An exoplanet biosignature is an atmospheric gas — or a combination of gases in chemical disequilibrium, like oxygen plus methane — that i... - [Exoplanet Eclipse Mapping](https://unseel.com/astronomy/eclipse-mapping.html): Eclipse mapping reconstructs a two-dimensional brightness map of an exoplanet's dayside from the precise shape of its secondary-eclipse i... - [Exoplanet Mass–Radius Relation](https://unseel.com/astronomy/exoplanet-mass-radius.html): The exoplanet mass–radius relation maps a planet's measured mass against its radius to infer bulk density and composition — rock, iron, w... - [Exoplanet Phase Curve](https://unseel.com/astronomy/phase-curve-exoplanet.html): An exoplanet phase curve is the gentle rise and fall of a system's combined light as a planet's glowing dayside rotates into and out of v... - [Faber-Jackson Relation](https://unseel.com/astronomy/faber-jackson-relation.html): The Faber-Jackson relation states that an elliptical galaxy's luminosity scales as roughly the fourth power of its central stellar veloci... - [Fanaroff-Riley Classification](https://unseel.com/astronomy/fanaroff-riley-classification.html): The Fanaroff-Riley classification splits extended radio galaxies into two morphological types by where their jets deposit energy: edge-da... - [Faraday Rotation](https://unseel.com/astronomy/faraday-rotation.html): Faraday rotation is the wavelength-squared twisting of a radio wave's polarization plane as it crosses magnetized plasma. The rotation an... - [Fast Radio Burst](https://unseel.com/astronomy/fast-radio-burst.html): A fast radio burst is a millisecond flash of coherent radio emission carrying ~ 10³⁹–10⁴² erg in a single pulse. Discovered in 2007 in ar... - [Fermi Bubbles](https://unseel.com/astronomy/fermi-bubbles.html): The Fermi Bubbles are two enormous lobes of diffuse gamma-ray emission, each reaching about 8 to 10 kiloparsecs above and below the Milky... - [Fermi Paradox](https://unseel.com/astronomy/fermi-paradox.html): The Fermi paradox is the sharp contradiction between the high expected number of technological civilizations in the Galaxy and the comple... - [Firewall Paradox](https://unseel.com/astronomy/firewall-paradox.html): The 2012 firewall paradox of Almheiri, Marolf, Polchinski and Sully shows that three deeply held principles — black-hole unitarity, monog... - [Flatness Problem](https://unseel.com/astronomy/flatness-problem.html): A universe with Ω even 10⁻⁶⁰ off from 1 at the Planck time would now be either recollapsed or empty. We observe Ω₀ = 1.0007 ± 0.0019. Tha... - [Frame Dragging (Lense–Thirring Effect)](https://unseel.com/astronomy/frame-dragging.html): Frame dragging is the prediction of general relativity that a rotating mass drags the spacetime around it into co-rotation, pulling the l... - [Friedmann Equations](https://unseel.com/astronomy/friedmann-equations.html): The Friedmann equations are the two coupled ODEs that follow from applying Einstein's general relativity to a homogeneous, isotropic univ... - [FU Orionis Outburst](https://unseel.com/astronomy/fu-orionis-outburst.html): An FU Orionis outburst is an episodic-accretion event in which a young star's disk abruptly brightens ~5 magnitudes (about 100×) as the a... - [Fundamental Plane](https://unseel.com/astronomy/fundamental-plane.html): The fundamental plane is a tight 2D surface in 3D space (R_eff, σ, I_e) on which every elliptical galaxy lies. Discovered in 1987 by Djor... - [Gaia Astrometry](https://unseel.com/astronomy/gaia-astrometry.html): Gaia astrometry is the European Space Agency mission that measures the positions, distances, and motions of nearly two billion stars by s... - [Galactic Coordinates](https://unseel.com/astronomy/galactic-coordinates.html): Galactic coordinates (ℓ, b) align with the Milky Way disk: ℓ=0 toward the Galactic Center in Sgr A*, b=0 along the midplane. Sun sits at ... - [Galactic Fountain](https://unseel.com/astronomy/galactic-fountain.html): A galactic fountain is the cycle in which clustered supernovae blast hot gas out of a galaxy's disk into the halo, where it cools into cl... - [Galactic Habitable Zone](https://unseel.com/astronomy/galactic-habitable-zone.html): The galactic habitable zone is an annular region of a galaxy — roughly 7 to 9 kiloparsecs from the Milky Way's centre — where the metalli... - [Galactic Rotation Curve](https://unseel.com/astronomy/galactic-rotation.html): Stars far from a galaxy's center orbit just as fast as stars close in — the rotation curve is flat, not Keplerian. The only explanation i... - [Galactic Warp](https://unseel.com/astronomy/galactic-warp.html): A galactic warp is a large-scale bend in a galaxy's outer disk, where the plane tips up on one side of the center and down on the other l... - [Galactic Wind](https://unseel.com/astronomy/galactic-wind.html): A galactic wind is a large-scale outflow of gas driven from a galaxy by supernovae and active-nucleus feedback, reaching hundreds to thou... - [Galaxy](https://unseel.com/astronomy/galaxy.html): A galaxy is a vast island of billions of stars, gas, and dust held together by gravity, with a supermassive black hole at its core. The M... - [Galaxy Bar](https://unseel.com/astronomy/galaxy-bar.html): A galaxy bar is an elongated, dynamically coherent stellar structure crossing the centre of a disk galaxy. Roughly two-thirds of disk gal... - [Galaxy Bulge](https://unseel.com/astronomy/galaxy-bulge.html): The central spheroidal component of spiral galaxies. Classical bulges (merger-built, elliptical-like) versus pseudobulges (disk-built, bo... - [Galaxy Cluster](https://unseel.com/astronomy/galaxy-cluster.html): A galaxy cluster is the most massive gravitationally-bound structure in the universe — 50 to over 1000 galaxies bathed in a 10⁸ K X-ray p... - [Galaxy Merger](https://unseel.com/astronomy/galaxy-merger.html): A galaxy merger is the gravitational collision of two galaxies that progresses through close passages, tidal disruption, gas-rich starbur... - [Galaxy Rotation Curve](https://unseel.com/astronomy/galaxy-rotation-curve.html): A galaxy rotation curve plots orbital velocity versus radius. Newton predicts a Keplerian decline beyond the visible disk; observations s... - [Galaxy Types](https://unseel.com/astronomy/galaxy-types.html): Hubble classified galaxies into ellipticals, spirals, and barred spirals — plus the irregulars that resist categorization. Each type refl... - [Gamma-Ray Burst](https://unseel.com/astronomy/gamma-ray-burst.html): Brief flashes of gamma rays from the deaths of massive stars (long GRBs) or from neutron-star mergers (short GRBs). A single burst can ou... - [Globular Cluster](https://unseel.com/astronomy/globular-cluster.html): A globular cluster is a gravitationally-bound, roughly spherical swarm of 10⁴ to 10⁶ stars, typically 10–13 Gyr old and metal-poor, orbit... - [Grand Tack Hypothesis](https://unseel.com/astronomy/grand-tack.html): The Grand Tack hypothesis proposes that Jupiter migrated inward to about 1.5 AU early in the Solar System, then reversed course back out ... - [Grand-Design vs Flocculent Spirals](https://unseel.com/astronomy/grand-design-spiral.html): Grand-design spirals show two clean, symmetric arms traced by a long-lived density wave, while flocculent spirals show dozens of short, r... - [Gravitational Collapse](https://unseel.com/astronomy/gravitational-collapse.html): Gravitational collapse is the inward fall of matter under its own self-gravity when internal pressure can no longer support it. The endpo... - [Gravitational Lensing](https://unseel.com/astronomy/gravitational-lensing.html): Einstein predicted that massive objects bend space-time — and light paths curve through it. Galaxy clusters act as natural telescopes, di... - [Gravitational Microlensing](https://unseel.com/astronomy/gravitational-microlensing.html): If a foreground star drifts across a background star, its gravity briefly magnifies the light. A planet orbiting the lens adds a secondar... - [Gravitational Redshift](https://unseel.com/astronomy/gravitational-redshift-star.html): Gravitational redshift is the stretching of light to longer wavelengths as it climbs out of a gravity well, losing energy. Predicted by g... - [Gravitational Redshift](https://unseel.com/astronomy/gravitational-redshift.html): Gravitational redshift is the increase in wavelength — the loss of frequency and photon energy — of light as it climbs out of a gravitati... - [Gravitational-Wave Memory](https://unseel.com/astronomy/gravitational-wave-memory.html): Gravitational-wave memory is a permanent, non-oscillatory displacement between freely-falling test masses left behind after a gravitation... - [Gravity Darkening](https://unseel.com/astronomy/gravity-darkening.html): Gravity darkening explained: a rapidly rotating star is hotter and brighter at its poles and cooler at its bulging equator. Von Zeipel's ... - [Gunn-Peterson Trough](https://unseel.com/astronomy/gunn-peterson-trough.html): The Gunn-Peterson trough is the near-total absorption of a quasar's continuum blueward of its Lyman-alpha emission line, produced when ev... - [Gyrochronology](https://unseel.com/astronomy/gyrochronology.html): Gyrochronology is the technique of dating a cool, sun-like star from its rotation period: magnetised stellar winds brake the spin so that... - [Habitable Zone](https://unseel.com/astronomy/habitable-zone.html): The habitable zone is the range of orbital distances at which a rocky planet with an Earth-like atmosphere can sustain liquid water on it... - [Halo Mass Function](https://unseel.com/astronomy/halo-mass-function.html): The halo mass function n(M, z) is the comoving number density of dark-matter halos per unit mass at redshift z. It rises as a power law t... - [Hawking Radiation](https://unseel.com/astronomy/hawking-radiation.html): Hawking radiation is the thermal spectrum a black hole emits because of quantum effects near its event horizon. T_H = ℏc³/(8πGMk_B), abou... - [Heliopause](https://unseel.com/astronomy/heliopause.html): The heliopause is the outer boundary at which the Sun's solar-wind bubble pushes against the local interstellar medium and comes into pre... - [Helioseismology](https://unseel.com/astronomy/helioseismology.html): Helioseismology is the study of the Sun's interior using its sound-wave oscillations. Trapped p-modes make the surface ring at ~5 minutes... - [Heliosphere](https://unseel.com/astronomy/heliosphere.html): The Sun's solar wind carves a comet-shaped bubble through the galaxy, extending about 120 AU to the heliopause. Voyager 1 crossed into in... - [Heliospheric Current Sheet](https://unseel.com/astronomy/heliospheric-current-sheet.html): The heliospheric current sheet is the warped surface where the Sun's magnetic field flips polarity, separating the two magnetic hemispher... - [Helium Flash](https://unseel.com/astronomy/helium-flash.html): When a red giant's degenerate helium core reaches 100 million K, fusion ignites explosively — releasing 10¹¹ solar luminosities in second... - [Herbig-Haro Object](https://unseel.com/astronomy/herbig-haro-object.html): Herbig-Haro objects are bright bow-shocked nebulae where supersonic jets from young stars slam into ambient gas. HH 1, HH 2, HH 30, HH 47... - [Hertzsprung Gap](https://unseel.com/astronomy/hertzsprung-gap.html): The Hertzsprung gap is a sparsely populated band on the Hertzsprung-Russell diagram between the main-sequence turnoff and the red-giant b... - [Hill Sphere](https://unseel.com/astronomy/hill-sphere.html): A planet's gravitational sphere of influence — inside, moons can orbit stably; outside, the Sun steals them. Earth's Hill sphere is 1.5 m... - [Horizon Problem](https://unseel.com/astronomy/horizon-problem.html): Patches of cosmic microwave background separated by 90° on the sky never had time to exchange a single photon before recombination, yet t... - [Horizontal Branch](https://unseel.com/astronomy/horizontal-branch.html): Horizontal-branch stars burn helium quietly in a non-degenerate core while a hydrogen shell burns just outside. They sit on a near-horizo... - [Horseshoe Orbits](https://unseel.com/astronomy/horseshoe-orbit.html): A horseshoe orbit is a co-orbital path in which two bodies sharing almost the same orbit repeatedly approach, exchange a tiny amount of e... - [Hot Jupiter Migration](https://unseel.com/astronomy/hot-jupiter-migration.html): Hot Jupiters are gas-giant exoplanets in 1- to 10-day orbits closer to their stars than Mercury is to the Sun. They cannot form there: th... - [HR Diagram](https://unseel.com/astronomy/hr-diagram.html): The Hertzsprung-Russell diagram plots stars by temperature (x) against luminosity (y). Distinct regions — main sequence, red giants, whit... - [Hubble Tension](https://unseel.com/astronomy/hubble-tension.html): The CMB says the universe expands at 67 km/s/Mpc. Nearby supernovae say 73. The 5σ discrepancy won't go away — and may require new physic... - [Hubble Tuning Fork](https://unseel.com/astronomy/hubble-tuning-fork.html): The Hubble tuning fork is a morphological classification that sorts galaxies into ellipticals (E0–E7), spirals (Sa–Sc) and barred spirals... - [Hulse-Taylor Binary](https://unseel.com/astronomy/hulse-taylor-binary.html): The Hulse-Taylor binary (PSR B1913+16) is a pair of neutron stars whose 7.75-hour orbit shrinks by about 76 microseconds per year as it r... - [Hypervelocity Star](https://unseel.com/astronomy/hypervelocity-star.html): A hypervelocity star is a star moving fast enough to escape the Milky Way entirely — typically 700 to 1,700 km/s — after a binary was tor... - [Iapetus's Equatorial Ridge](https://unseel.com/astronomy/iapetus-ridge.html): Iapetus's equatorial ridge is a mountain wall up to 20 km high and roughly 1,300 km long that traces the moon's equator to within about a... - [Impact Cratering](https://unseel.com/astronomy/impact-cratering.html): Impact cratering is the process where a hypervelocity asteroid or comet excavates a crater on impact. See contact, excavation, modificati... - [Inflation Era](https://unseel.com/astronomy/inflation-era.html): Between 10⁻³⁶ and 10⁻³² seconds after the Big Bang, the universe expanded by a factor of 10²⁶ — faster than light in any local sense. Inf... - [Initial Mass Function](https://unseel.com/astronomy/initial-mass-function.html): The initial mass function (IMF) is the distribution of stellar masses at birth. Above ~0.5 M☉ it follows a steep power law with Salpeter ... - [Innermost Stable Circular Orbit](https://unseel.com/astronomy/isco-orbit.html): The innermost stable circular orbit (ISCO) is the closest a particle can stably orbit a black hole — 6GM/c² for Schwarzschild; inside it,... - [Instability Strip & the Kappa Mechanism](https://unseel.com/astronomy/instability-strip.html): The instability strip is a near-vertical band on the HR diagram where a layer of partially ionised helium acts as a heat valve. When comp... - [Integral Field Spectroscopy](https://unseel.com/astronomy/integral-field-spectroscopy.html): Integral field spectroscopy records a complete spectrum at every spatial position in a single exposure, building a three-dimensional data... - [Integrated Sachs-Wolfe Effect](https://unseel.com/astronomy/integrated-sachs-wolfe.html): The integrated Sachs-Wolfe (ISW) effect is the net energy a cosmic microwave background photon gains or loses while crossing a gravitatio... - [Intermediate-Mass Black Hole](https://unseel.com/astronomy/intermediate-mass-black-hole.html): Stellar black holes max out at ~100 solar masses; supermassive ones start at a million. The in-between range — 100 to 100,000 solar — is ... - [Interstellar Medium](https://unseel.com/astronomy/interstellar-medium.html): The space between stars isn't empty — it's filled with gas and dust in distinct phases: hot ionized, warm neutral, and cold molecular. Th... - [Interstellar Objects](https://unseel.com/astronomy/interstellar-objects.html): Interstellar objects are comets and asteroids ejected from other planetary systems that pass through the Sun's neighbourhood on unbound h... - [Inverse Compton Scattering](https://unseel.com/astronomy/inverse-compton-scattering.html): Inverse Compton scattering: relativistic electrons upscatter low-energy photons to high energy, the mirror image of ordinary Compton scat... - [Io Plasma Torus](https://unseel.com/astronomy/io-plasma-torus.html): The Io plasma torus is a doughnut-shaped cloud of ionized sulfur and oxygen that circles Jupiter near Io's orbit at 5.9 Jupiter radii. Io... - [Io's Volcanism](https://unseel.com/astronomy/io-volcanism.html): Jupiter's gravity flexes Io by 100 meters per day, generating enough internal heat to power over 400 active volcanoes. No other body in t... - [Jeans Instability](https://unseel.com/astronomy/jeans-instability.html): The Jeans instability is the criterion for gravitational collapse: a gas cloud falls in on itself when self-gravity beats pressure — when... - [Jeans Mass](https://unseel.com/astronomy/jeans-mass.html): The Jeans mass is the minimum mass for a gas cloud to collapse under its own gravity at a given temperature and density. It scales as M_J... - [Jellyfish Galaxy](https://unseel.com/astronomy/jellyfish-galaxy.html): A jellyfish galaxy is a disk galaxy falling into a cluster whose interstellar gas is swept into one-sided trailing tentacles by ram press... - [Jupiter's Storms](https://unseel.com/astronomy/jupiter-storms.html): Jupiter's colorful bands are alternating east-west jet streams. The Great Red Spot — an anticyclone wider than Earth — has raged for at l... - [JWST L2 Halo Orbit](https://unseel.com/astronomy/jwst-l2-halo-orbit.html): JWST orbits the Sun-Earth L2 Lagrange point in a 6-month Lissajous halo trajectory, always in Earth shadow. - [Kennicutt-Schmidt Law](https://unseel.com/astronomy/kennicutt-schmidt-law.html): The Kennicutt-Schmidt law states that a galaxy's star-formation-rate surface density scales with its gas surface density to the power N ≈... - [Kerr Black Hole](https://unseel.com/astronomy/kerr-black-hole.html): A rotating black hole drags spacetime itself along with it — a region called the ergosphere. Inside, you literally cannot stand still rel... - [Kilonova](https://unseel.com/astronomy/kilonova.html): Two neutron stars spiraling inward shed gravitational waves, merge in milliseconds, and eject a radioactive cloud of heavy elements. That... - [Kirkwood Gaps](https://unseel.com/astronomy/kirkwood-gaps.html): Kirkwood gaps are narrow zones in the asteroid belt, at 2.06, 2.50, 2.82, 2.96 and 3.27 AU, that are nearly empty of asteroids. They sit ... - [Kozai-Lidov Mechanism](https://unseel.com/astronomy/kozai-lidov-mechanism.html): The Kozai-Lidov mechanism is a resonance in which an inclined outer companion drives large oscillations that trade an inner body's eccent... - [Kuiper Belt](https://unseel.com/astronomy/kuiper-belt.html): A flat disk of icy worlds extending from 30 to 50 AU past Neptune. Home to Pluto, Eris, Makemake, Haumea — and hundreds of smaller worlds... - [Lagrange Points](https://unseel.com/astronomy/lagrange-points.html): In any two-body system, five points exist where a small object can orbit in lockstep with the big ones. L1 and L2 host space telescopes (... - [Laplace Resonance](https://unseel.com/astronomy/laplace-resonance.html): The Laplace resonance is the 1:2:4 mean-motion lock binding Jupiter's moons Io, Europa, and Ganymede: every time Ganymede orbits once, Eu... - [Late Heavy Bombardment](https://unseel.com/astronomy/late-heavy-bombardment.html): The Late Heavy Bombardment is a proposed spike of asteroid and comet impacts that battered the Moon and inner planets around 4.1–3.8 bill... - [Lense–Thirring Precession](https://unseel.com/astronomy/lense-thirring-precession.html): Lense–Thirring precession is the slow wheeling of an orbit caused by a spinning mass dragging spacetime around with it — a general-relati... - [Libration](https://unseel.com/astronomy/libration.html): Libration is the slow apparent rocking of an orbiting body about its mean orientation, caused by the mismatch between uniform spin and no... - [Light Echo](https://unseel.com/astronomy/light-echo.html): A light echo is the delayed glow seen when a sudden flash from a star scatters off surrounding dust and reaches us by a longer path. The ... - [Limb Darkening](https://unseel.com/astronomy/limb-darkening.html): Limb darkening makes a stellar disk fade toward its edge: the slanted line of sight near the limb reaches only cooler, higher layers. The... - [Lindblad Resonance](https://unseel.com/astronomy/lindblad-resonance.html): A Lindblad resonance occurs when a star's epicyclic frequency κ matches the forcing of a spiral arm or bar, m(Ω − Ω_p) = ±κ. The inner an... - [Look-back Time](https://unseel.com/astronomy/look-back-time.html): Look-back time is the cosmic age difference between emission and reception of a photon — t(z) = ∫₀^z dz'/[(1+z')·H(z')]. At z = 1, the un... - [Luminosity Distance](https://unseel.com/astronomy/luminosity-distance.html): Luminosity distance d_L is the distance inferred from an object's flux and known luminosity in an expanding universe: flux = L / (4π d_L²... - [Luminous Blue Variable](https://unseel.com/astronomy/luminous-blue-variable.html): A luminous blue variable (LBV) is an extremely massive, unstable star sitting near its Eddington limit, with L ≈ 10⁶ L_⊙. LBVs suffer gia... - [Lunar Libration](https://unseel.com/astronomy/lunar-libration.html): Lunar libration is the slow rocking and nodding of the Moon that lets Earth-bound observers glimpse 59% of its surface over time, despite... - [Lunar Maria](https://unseel.com/astronomy/lunar-maria.html): Lunar maria are the Moon's dark, flat plains — vast impact basins flooded by basaltic lava that cooled into smooth rock 3-3.5 billion yea... - [Lunar Nodes & Eclipse Seasons](https://unseel.com/astronomy/lunar-nodes-eclipse-seasons.html): The lunar nodes are the two points where the Moon's orbit, inclined 5.14° to the ecliptic, crosses Earth's orbital plane. Eclipses can oc... - [Lunar Recession](https://unseel.com/astronomy/lunar-recession.html): Lunar recession is the slow outward drift of the Moon's orbit — about 3.8 centimetres per year — driven by tidal friction that transfers ... - [Lyman-Alpha Forest](https://unseel.com/astronomy/lyman-alpha-forest.html): Light from a distant quasar passes through clouds of intergalactic hydrogen on its way to Earth. Each cloud absorbs at its own redshifted... - [Lyman-Break Galaxy](https://unseel.com/astronomy/lyman-break-galaxy.html): A Lyman-break galaxy (LBG) is a high-redshift, star-forming galaxy identified by the sharp drop in flux blueward of 912 Å rest-frame caus... - [Magnetar](https://unseel.com/astronomy/magnetar.html): A neutron star with a magnetic field 1,000× stronger than ordinary pulsars — strong enough to warp atoms and reshape vacuum itself. A sin... - [Magnetic Reconnection (Solar)](https://unseel.com/astronomy/magnetic-reconnection-solar.html): Magnetic reconnection is the topology-changing rearrangement of magnetic field lines in a plasma — Sweet-Parker is slow (Lundquist⁻¹/²), ... - [Magnetorotational Instability](https://unseel.com/astronomy/magnetorotational-instability.html): The magnetorotational instability (MRI) is a process where a weak magnetic field in a rotating disk becomes unstable, generating turbulen... - [Main Sequence](https://unseel.com/astronomy/main-sequence.html): Stars spend 90% of their lives on the main sequence, fusing hydrogen into helium. Mass alone determines type and lifetime — from trillion... - [Mars](https://unseel.com/astronomy/mars.html): The fourth planet from the Sun — a cold desert world whose iron-rich dust gives it its iconic red color. Show a rotating Mars with polar ... - [Mars Dust Storm](https://unseel.com/astronomy/mars-dust-storm.html): Every few years, local Martian dust storms snowball into planet-wide events that blot out the Sun for months. Temperature, albedo, and wi... - [Mars Polar Ice Caps](https://unseel.com/astronomy/mars-polar-ice.html): Mars has two ice caps: permanent water ice beneath a seasonal CO₂ frost that sublimates at each summer and re-forms at each winter. The p... - [Mass-Luminosity Relation](https://unseel.com/astronomy/mass-luminosity-relation.html): The mass-luminosity relation is the empirical and theoretical scaling L ∝ M^α for main-sequence stars, with α ≈ 4 for solar-mass stars, 3... - [Mass–Metallicity Relation](https://unseel.com/astronomy/mass-metallicity-relation.html): The mass–metallicity relation: more massive galaxies are more metal-rich because their deeper gravitational potentials hold onto enriched... - [Matched Filtering](https://unseel.com/astronomy/matched-filtering.html): Matched filtering is the signal-processing technique that finds a known waveform buried in noisier data by cross-correlating the data aga... - [Matter Power Spectrum](https://unseel.com/astronomy/matter-power-spectrum.html): The matter power spectrum P(k) measures the variance of density fluctuations as a function of scale. It rises as P ∝ k on large scales, t... - [Matter-Radiation Equality](https://unseel.com/astronomy/matter-radiation-equality.html): Matter-radiation equality is the cosmic epoch about 50,000 years after the Big Bang when the energy density of matter caught up with that... - [Maunder Minimum & Grand Solar Minima](https://unseel.com/astronomy/maunder-minimum.html): The Maunder Minimum was a 70-year stretch from 1645 to 1715 when sunspots all but vanished — fewer than 50 spots were recorded over three... - [Mean-Motion Resonance](https://unseel.com/astronomy/mean-motion-resonance.html): A mean-motion resonance is an orbital resonance in which two or more bodies have orbital periods in a near-integer ratio. Jupiter's moons... - [Mercury Perihelion Precession](https://unseel.com/astronomy/mercury-perihelion-precession.html): Mercury's perihelion advances by 574.10 arcseconds per century. Newtonian gravity accounts for 531.63 of those arcseconds; 43 remained un... - [Mercury Transit](https://unseel.com/astronomy/mercury-transit.html): When Mercury passes directly between Earth and Sun, it appears as a tiny black dot crossing the solar disk. Only about 13 transits happen... - [Meteor Shower](https://unseel.com/astronomy/meteor-shower.html): A meteor shower is when Earth plows through a comet's leftover dust stream and the grains burn up as meteors that all seem to radiate fro... - [Metonic Cycle](https://unseel.com/astronomy/metonic-cycle.html): The Metonic cycle is the near-coincidence that 19 tropical years (6,939.60 days) almost exactly equals 235 synodic months (6,939.69 days)... - [Milankovitch Cycles](https://unseel.com/astronomy/milankovitch-cycles.html): Milankovitch cycles are slow, periodic changes in Earth's orbit and spin: eccentricity (~100 kyr), obliquity (~41 kyr), and precession (~... - [Milky Way](https://unseel.com/astronomy/milky-way.html): Our home galaxy — a barred spiral ~100,000 light-years across containing 200–400 billion stars. Show the four major arms (Perseus, Scutum... - [Millisecond Pulsar](https://unseel.com/astronomy/millisecond-pulsar.html): A millisecond pulsar is a recycled neutron star with spin period below 30 ms, spun up by accretion from a binary companion. Their atomic-... - [Mira Variables](https://unseel.com/astronomy/mira-variable.html): A Mira variable is a cool, pulsating red giant on the asymptotic giant branch whose visual brightness swings by a factor of a thousand or... - [Molecular Cloud](https://unseel.com/astronomy/molecular-cloud.html): Molecular clouds are the coldest, densest reservoirs of the interstellar medium — H₂ at 10–30 K, dust grains and trace CO. Orion, Taurus,... - [MOND — Modified Newtonian Dynamics](https://unseel.com/astronomy/mond-modified-gravity.html): Modified Newtonian Dynamics (MOND) is Mordehai Milgrom's 1983 proposal that Newton's second law breaks down at accelerations below a_0 ≈ ... - [Monopole Problem](https://unseel.com/astronomy/monopole-problem.html): Grand unified theories predict ~10⁸⁰ magnetic monopoles per cubic horizon at the GUT phase transition. None have been seen. Inflation dil... - [Moon Phases](https://unseel.com/astronomy/moon-phases.html): The Moon orbits Earth every 29.5 days, cycling through 8 named phases. Half the Moon is always lit by the Sun — what changes is how much ... - [Naked Singularity & Cosmic Censorship](https://unseel.com/astronomy/naked-singularity.html): A naked singularity is a gravitational singularity with no event horizon to hide it, so its infinite-curvature core would be visible to d... - [Nebula](https://unseel.com/astronomy/nebula.html): A nebula is an immense cloud of gas and dust floating in space — often stretching tens of light-years across. Show the three main types: ... - [Neptune's Dark Spot](https://unseel.com/astronomy/neptune-dark-spot.html): Neptune's Great Dark Spot was an Earth-sized anticyclone Voyager 2 photographed in 1989. By 1994, Hubble found it gone. Unlike Jupiter's ... - [Neutron Degeneracy Pressure](https://unseel.com/astronomy/neutron-degeneracy-pressure.html): Neutron degeneracy pressure is the Pauli pressure of a cold dense neutron gas. It supports neutron stars up to the Tolman-Oppenheimer-Vol... - [Neutron Star](https://unseel.com/astronomy/neutron-star.html): A neutron star is the crushed core left behind after a massive star explodes as a supernova — a city-sized sphere with more mass than the... - [Neutron Star Cooling & the URCA Process](https://unseel.com/astronomy/neutron-star-cooling.html): Neutron star cooling is the centuries-long fall in surface temperature of a newborn neutron star as it radiates its enormous internal hea... - [Neutron Star Merger](https://unseel.com/astronomy/neutron-star-merger.html): GW170817 was detected in gravitational waves AND gamma rays AND visible light — the same event across four signal types. It confirmed tha... - [Nice Model](https://unseel.com/astronomy/nice-model.html): The Nice model says the giant planets formed compact and migrated by scattering planetesimals. A Jupiter-Saturn 2:1 resonance crossing tr... - [No-Hair Theorem](https://unseel.com/astronomy/no-hair-theorem.html): The no-hair theorem says a stationary black hole is completely characterised by just three numbers: mass M, electric charge Q, and angula... - [Nova Eruption](https://unseel.com/astronomy/nova-eruption.html): A classical nova is a thermonuclear runaway on the surface of an accreting white dwarf. About 10⁻⁴ M☉ of hydrogen builds up under degener... - [Nuclear Pasta](https://unseel.com/astronomy/neutron-star-pasta.html): The exotic state of matter ~1 km below a neutron star's surface — gnocchi, spaghetti, lasagna at 10¹⁴–10¹⁵ g/cm³. - [Nuclear Star Cluster](https://unseel.com/astronomy/nuclear-star-cluster.html): A nuclear star cluster is a compact, massive stellar system at the dynamical centre of a galaxy — 10⁵ to 10⁸ M☉ packed into a half-light ... - [Nulling Interferometry](https://unseel.com/astronomy/nulling-interferometry.html): Nulling interferometry combines two or more telescopes with a π achromatic phase shift so an on-axis star's light interferes destructivel... - [Olbers Paradox](https://unseel.com/astronomy/olbers-paradox.html): In an infinite, eternal, uniform universe, every line of sight should end on a star's surface — the sky should be as bright as the Sun. I... - [Oort Cloud](https://unseel.com/astronomy/oort-cloud.html): A vast spherical cloud of a trillion icy bodies surrounds the solar system from 2,000 to 100,000 AU. Passing stars can nudge bodies inwar... - [Open Cluster](https://unseel.com/astronomy/open-cluster.html): An open cluster is a gravitationally-loose group of hundreds to a few thousand young stars formed together from one molecular cloud. They... - [Opposition Surge](https://unseel.com/astronomy/opposition-surge.html): The opposition surge is a sharp, nonlinear brightening of an airless, particulate surface as its phase angle approaches zero — the Sun di... - [Orbital Resonance](https://unseel.com/astronomy/orbital-resonance.html): Orbital resonance occurs when two bodies have orbital periods in a small-integer ratio, so they meet at the same points and exchange grav... - [Pair Production from Gamma Rays](https://unseel.com/astronomy/pair-production-gamma.html): A high-energy gamma-ray photon colliding with a second photon creates an electron-positron pair when E₁E₂ > (m_e c²)² ≈ 0.26 MeV². Collis... - [Pair-Instability Supernova](https://unseel.com/astronomy/pair-instability-supernova.html): A pair-instability supernova destroys a 140-260 M☉ star without leaving a remnant. Gamma photons in the core convert to electron-positron... - [Panspermia](https://unseel.com/astronomy/panspermia.html): Panspermia is the hypothesis that life, or its dormant seeds, can travel between worlds aboard comets, asteroids, and meteorites — surviv... - [Parker Solar Probe](https://unseel.com/astronomy/parker-solar-probe.html): NASA's first spacecraft to fly through the Sun's corona, surviving 1,400 °C behind a 11.4 cm carbon-foam thermal shield. - [Parker Spiral](https://unseel.com/astronomy/parker-spiral.html): The Parker spiral is the steady-state geometry of the Sun's magnetic field in the heliosphere. Solar wind drags the frozen-in field outwa... - [Particle Horizon](https://unseel.com/astronomy/particle-horizon.html): The particle horizon is the maximum proper distance light could have travelled since the Big Bang: d_p(t₀) = c · ∫₀^t₀ dt'/a(t'). Today's... - [Pebble Accretion](https://unseel.com/astronomy/pebble-accretion.html): Pebble accretion explained: centimetre-to-metre pebbles, aerodynamically funneled toward a growing core by gas drag, accrete far faster t... - [Peculiar Velocity & the CMB Dipole](https://unseel.com/astronomy/peculiar-velocity.html): Peculiar velocity is a galaxy's motion relative to the smooth Hubble flow of cosmic expansion. The Sun's 369.8 km/s peculiar velocity Dop... - [Penrose Process](https://unseel.com/astronomy/penrose-process.html): The Penrose process extracts rotational energy from a Kerr black hole by splitting a particle inside the ergosphere — one fragment falls ... - [Photometric Filter Systems](https://unseel.com/astronomy/photometric-filters.html): A photometric filter system is a standardized set of bandpasses that sample a star's spectrum at fixed wavelengths so brightness and colo... - [Photometric Redshift](https://unseel.com/astronomy/photometric-redshift.html): A photometric redshift estimates a galaxy's distance from its brightness in a handful of broadband filters instead of a full spectrum. Th... - [Photon Sphere](https://unseel.com/astronomy/photon-sphere.html): A photon sphere is the radius around a black hole where gravity bends light into a circular orbit — at exactly 1.5 Schwarzschild radii. I... - [Photosphere](https://unseel.com/astronomy/photosphere.html): The photosphere is the Sun's visible surface — a 300-km-thick layer where photons finally escape to space. Effective temperature T_eff = ... - [Planet Nine](https://unseel.com/astronomy/planet-nine.html): Planet Nine: a hypothesized 5-10 M⊕ super-Earth at 380-800 AU, proposed by Batygin & Brown 2016 to explain clustered orbits of extreme TN... - [Planetary Albedo](https://unseel.com/astronomy/planetary-albedo.html): Planetary albedo is the fraction of incoming sunlight a world reflects back to space, from 0.9 for icy Enceladus to 0.07 for charcoal-dar... - [Planetary Bow Shock](https://unseel.com/astronomy/planetary-bow-shock.html): A planetary bow shock is the standing shock wave that forms where the supersonic solar wind abruptly slows, heats, and deflects around a ... - [Planetary Dynamo](https://unseel.com/astronomy/planetary-dynamo.html): A rotating, convecting, electrically-conductive liquid (like Earth's outer core) generates a self-sustaining magnetic field via the dynam... - [Planetary Magnetosphere & Magnetotail](https://unseel.com/astronomy/planetary-magnetosphere.html): A planetary magnetosphere is the cavity that a planet's magnetic field carves out of the supersonic solar wind: compressed to a blunt nos... - [Planetary Nebula](https://unseel.com/astronomy/planetary-nebula.html): Nothing to do with planets — the expelled outer envelope of a dying low-mass star, ionized by the exposed hot core. Rings, butterflies, h... - [Planetary Radiation Belts](https://unseel.com/astronomy/planetary-radiation-belts.html): Planetary radiation belts are toroidal zones where a planet's magnetic field traps charged particles into stable orbits. Earth's Van Alle... - [Pluto & Charon](https://unseel.com/astronomy/pluto-charon.html): Charon is so massive relative to Pluto that their common center of gravity lies outside Pluto itself. Both are mutually tidally locked — ... - [Point Spread Function](https://unseel.com/astronomy/point-spread-function.html): A point spread function is the blurred image a telescope makes of a true point of light — the Airy disk that sets resolution, diffraction... - [Population III Stars](https://unseel.com/astronomy/first-stars-population-iii.html): Population III stars formed from primordial Big Bang gas — about 75% hydrogen, 25% helium, no metals at all. Without metal cooling, the g... - [Post-Starburst (E+A) Galaxy](https://unseel.com/astronomy/post-starburst-galaxy.html): A post-starburst (E+A) galaxy is one caught 0.1–1 Gyr after a violent burst of star formation abruptly shut off. Its spectrum superimpose... - [Poynting–Robertson Drag](https://unseel.com/astronomy/poynting-robertson-drag.html): Poynting–Robertson drag is the headwind of starlight that saps a dust grain's orbital angular momentum, spiralling it into the Sun. A mil... - [Precession of the Equinoxes](https://unseel.com/astronomy/precession-equinoxes.html): Earth's rotation axis traces a cone on the celestial sphere over 25,772 years, shifting equinoxes backward by 1° every 71.6 yr. Caused by... - [Press-Schechter Formalism](https://unseel.com/astronomy/press-schechter.html): The Press-Schechter formalism predicts the halo mass function from Gaussian initial fluctuations and a spherical-collapse threshold δ_c =... - [Press-Schechter Formalism](https://unseel.com/astronomy/press-schechter-formalism.html): The Press-Schechter formalism is a 1974 analytic recipe that predicts how many dark matter halos of each mass exist at any cosmic epoch, ... - [Primordial Black Hole](https://unseel.com/astronomy/primordial-black-hole.html): If density fluctuations in the early universe were large enough, regions collapsed directly into black holes — with masses from asteroids... - [Proper Motion](https://unseel.com/astronomy/proper-motion.html): Proper motion is a star's slow apparent drift across the sky, measured in arcseconds per year — the on-sky part of its true motion throug... - [Proton-Proton Chain](https://unseel.com/astronomy/proton-proton-chain.html): The proton-proton chain fuses four hydrogen nuclei into one helium-4, releasing 26.73 MeV. The bottleneck is the very first step, where t... - [Protoplanetary Disk](https://unseel.com/astronomy/protoplanetary-disk.html): Rotating disks of gas and dust around young stars where planets form. ALMA's HL Tau image resolved dust gaps at 14, 33, 50 AU. Lifetime 3... - [Protostar Formation](https://unseel.com/astronomy/protostar-formation.html): A dense clump in a molecular cloud collapses under gravity, spinning up and flattening into a disk. The core heats up until hydrogen fusi... - [Pulsar](https://unseel.com/astronomy/pulsar.html): Pulsars explained in 3D — see the spinning neutron star, magnetic axis, and sweeping radio beams that flash like a cosmic lighthouse. Int... - [Pulsar Glitch](https://unseel.com/astronomy/pulsar-glitch.html): A pulsar glitch is a sudden spin-up of a rotating neutron star, fractional jumps of Δν/ν ≈ 10⁻⁹ to 10⁻⁶, as superfluid vortices in the in... - [Pulsar Magnetosphere](https://unseel.com/astronomy/pulsar-magnetosphere.html): A pulsar magnetosphere is the rotating, plasma-filled magnetic structure around a spinning neutron star. The light cylinder R_LC = c/Ω di... - [Pulsar Timing Array](https://unseel.com/astronomy/pulsar-timing-array.html): A pulsar timing array (PTA) uses a network of millisecond pulsars distributed across the sky as a galactic-scale gravitational-wave detec... - [Pulsar Wind Nebula](https://unseel.com/astronomy/pulsar-wind-nebula.html): A pulsar wind nebula is a glowing bubble of magnetized plasma blown by a spinning neutron star, lit by synchrotron radiation from its rel... - [Quark Star](https://unseel.com/astronomy/quark-star.html): A quark star is a hypothetical compact object so dense that neutrons dissolve into a deconfined sea of up, down, and strange quarks. Held... - [Quasar](https://unseel.com/astronomy/quasar.html): A billion-solar-mass black hole devouring gas at near its theoretical maximum. The accretion disk glows across the spectrum, and relativi... - [Quasi-Periodic Oscillation](https://unseel.com/astronomy/quasi-periodic-oscillation.html): A quasi-periodic oscillation (QPO) is a narrow but non-coherent peak in the X-ray power spectrum of an accreting neutron star or stellar-... - [Quasi-Periodic Oscillations](https://unseel.com/astronomy/quasi-periodic-oscillations.html): Quasi-periodic oscillations are flickering X-rays from accreting neutron stars and black holes that beat at frequencies tied to the inner... - [Quasinormal Modes](https://unseel.com/astronomy/quasinormal-modes.html): Quasinormal modes are the damped, complex-frequency oscillations a perturbed black hole emits as it relaxes back to equilibrium. Their pi... - [Quenching Galaxies](https://unseel.com/astronomy/quenching-galaxies.html): Quenching is the shutdown of star formation that moves a galaxy from the blue cloud, through the green valley, to the red dead sequence. ... - [Quintessence](https://unseel.com/astronomy/quintessence.html): Quintessence is a dynamical, slowly evolving scalar field proposed as dark energy, with a time-varying equation of state w(z) that drifts... - [Quintessence Dark Energy](https://unseel.com/astronomy/quintessence-dark-energy.html): Quintessence is a dynamical scalar field φ whose slowly evolving potential V(φ) drives cosmic acceleration. Unlike a true cosmological co... - [R Coronae Borealis Star](https://unseel.com/astronomy/r-coronae-borealis.html): An R Coronae Borealis star is a rare, hydrogen-poor, carbon-rich supergiant that fades by up to 9 magnitudes — a brightness drop of thous... - [R-mode Instability](https://unseel.com/astronomy/r-mode-instability.html): The r-mode instability is a Coriolis-restored fluid oscillation in a rapidly rotating neutron star that, via the Chandrasekhar-Friedman-S... - [r-Process Nucleosynthesis](https://unseel.com/astronomy/r-process-nucleosynthesis.html): The r-process is rapid neutron capture — a chain of neutron additions onto a seed nucleus that runs faster than β decay can keep up, buil... - [Radial Velocity](https://unseel.com/astronomy/radial-velocity.html): A planet tugs its star in a small orbit of its own. We see that motion as a Doppler shift — alternating redshift and blueshift in the sta... - [Radio Galaxy](https://unseel.com/astronomy/radio-galaxy.html): A radio galaxy is an elliptical galaxy whose central supermassive black hole drives a pair of relativistic jets that inflate enormous lob... - [Radio Interferometry](https://unseel.com/astronomy/radio-interferometry.html): Combine signals from radio dishes separated by thousands of km and you get an effective telescope as wide as the separation. The Event Ho... - [Ram Pressure Stripping](https://unseel.com/astronomy/ram-pressure-stripping.html): Ram pressure stripping explained: a galaxy plunging through hot cluster gas at ~1000 km/s feels P_ram = ρv², which sweeps out its interst... - [Recombination Era](https://unseel.com/astronomy/recombination-era.html): At 380,000 years after the Big Bang, the universe cooled to 3,000 K and electrons combined with protons into neutral hydrogen. Photons st... - [Red Giant](https://unseel.com/astronomy/red-giant.html): The late-life fate of Sun-like stars. After ~10 billion years of hydrogen fusion, the core runs out of fuel and contracts. Outer layers e... - [Red Supergiant](https://unseel.com/astronomy/red-supergiant.html): A red supergiant is the coolest, largest evolved phase of a massive star, fusing helium in its core at T ≈ 3500 K with radii of 500–1500 ... - [Redshift-Space Distortion](https://unseel.com/astronomy/redshift-space-distortion.html): Peculiar velocities distort the galaxy map in redshift space: Kaiser squashing flattens large scales in proportion to the growth rate f, ... - [Redshift-Space Distortions](https://unseel.com/astronomy/redshift-space-distortions.html): Redshift-space distortions are the apparent squashing and stretching of the galaxy map caused by peculiar velocities along the line of si... - [Reheating](https://unseel.com/astronomy/reheating.html): When inflation ends, the inflaton field oscillates around its potential minimum and decays into Standard Model particles. This 'reheating... - [Reionization](https://unseel.com/astronomy/reionization.html): Reionization is the cosmic phase from roughly z = 15 to z = 5 — about 150 million to 1 billion years after the Big Bang — during which ul... - [Relativistic Beaming](https://unseel.com/astronomy/relativistic-beaming.html): Relativistic beaming concentrates emission from a near-light-speed source into a narrow forward cone of half-angle θ ≈ 1/γ and Doppler-bo... - [Relativistic Jet](https://unseel.com/astronomy/relativistic-jet.html): A relativistic jet is a collimated outflow in which bulk plasma propagates at velocities exceeding 99 percent of the speed of light. Lore... - [Relativistic Jets](https://unseel.com/astronomy/relativistic-jets.html): Relativistic jets are collimated beams of magnetised plasma launched from accreting black holes and neutron stars at bulk Lorentz factors... - [Ring Propellers](https://unseel.com/astronomy/ring-propellers.html): A ring propeller is the double-lobed, S-shaped density disturbance carved into Saturn's rings by an embedded moonlet too small to open a ... - [Ringdown Quasinormal Mode](https://unseel.com/astronomy/ringdown-quasinormal-mode.html): After a black hole binary merger, the distorted remnant settles to Kerr by emitting damped sinusoidal gravitational waves — quasinormal m... - [Roche Limit](https://unseel.com/astronomy/roche-limit.html): Approach a planet too closely and its tidal forces exceed your self-gravity — you get shredded. Shoemaker-Levy 9 disintegrated before str... - [Roche Lobe Overflow](https://unseel.com/astronomy/roche-lobe-overflow.html): A star in a close binary has a tear-drop region called the Roche lobe; when it expands until it fills that lobe, matter streams through t... - [Rossiter–McLaughlin Effect](https://unseel.com/astronomy/rossiter-mclaughlin.html): The Rossiter–McLaughlin effect is a tiny radial-velocity wobble during transit that reveals whether a planet's orbit is aligned with its ... - [Rotating Radio Transients](https://unseel.com/astronomy/rotating-radio-transient.html): A rotating radio transient (RRAT) is a neutron star detected only through rare, sporadic single radio bursts — typically 2 to 30 millisec... - [RR Lyrae Variables](https://unseel.com/astronomy/rr-lyrae.html): RR Lyrae variables are old, metal-poor, low-mass horizontal-branch stars that pulsate radially with periods of 0.2–1.0 days, driven by th... - [RR Lyrae Variables](https://unseel.com/astronomy/rr-lyrae-variable.html): An RR Lyrae variable is an old, metal-poor horizontal-branch star that pulsates every 0.2–1.0 days at a nearly fixed absolute magnitude (... - [s-Process Nucleosynthesis](https://unseel.com/astronomy/s-process-nucleosynthesis.html): The s-process is slow neutron capture in red-giant interiors. A nucleus picks up a neutron, beta-decays before the next capture arrives, ... - [S8 Tension](https://unseel.com/astronomy/s8-tension.html): The S8 tension is a ~2–3σ disagreement in how clumpy the universe is: weak gravitational lensing surveys (KiDS, DES, HSC) measure S8 ≈ 0.... - [Sachs-Wolfe Effect](https://unseel.com/astronomy/sachs-wolfe-effect.html): The Sachs-Wolfe effect is the gravitational temperature shift imprinted on CMB photons as they climb out of (and traverse) potential well... - [Sagittarius A*](https://unseel.com/astronomy/sgr-a-star.html): A 4-million-solar-mass black hole sitting 26,000 light-years away at the heart of the Milky Way. The Event Horizon Telescope imaged its s... - [Saha Equation & Recombination](https://unseel.com/astronomy/saha-equation.html): The Saha equation is the statistical-mechanics relation that fixes the ratio of ionized to neutral hydrogen as a function of temperature ... - [Saros Cycle](https://unseel.com/astronomy/saros-cycle.html): The Saros cycle is an 18-year, 11-day, 8-hour rhythm after which the Sun, Moon, and lunar nodes return to nearly the same geometry, so an... - [Saturn's Hexagon](https://unseel.com/astronomy/saturn-hexagon.html): Saturn's north pole hosts a 30,000-km-wide hexagonal jet stream that has persisted for at least four decades. Discovered by Voyager in 19... - [Saturn's Ring Origin](https://unseel.com/astronomy/saturn-ring-origin.html): Saturn's rings formed when a moon wandered inside the Roche limit — the distance where tidal forces shred a body faster than its gravity ... - [Saturn's Ring Spokes](https://unseel.com/astronomy/saturn-ring-spokes.html): Saturn's ring spokes are transient radial streaks across the B ring, made of micron-sized dust electrostatically levitated above the ice.... - [Saturn's Rings](https://unseel.com/astronomy/saturn-rings.html): 3D Saturn with its iconic ring system — 282,000 km wide but only ~10 m thick on average. Zoom in to reveal individual icy particles follo... - [Secondary Eclipse](https://unseel.com/astronomy/secondary-eclipse.html): A secondary eclipse is when an exoplanet passes behind its star and its own thermal glow is briefly hidden — the tiny dip reveals dayside... - [Sednoids & the Detached Disk](https://unseel.com/astronomy/sednoids.html): Sednoids are detached trans-Neptunian objects whose perihelia lie so far from the Sun — Sedna never closer than 76 AU — that Neptune's gr... - [Self-Interacting Dark Matter](https://unseel.com/astronomy/self-interacting-dark-matter.html): A class of dark matter models where particles scatter off one another with cross-section ~0.1–10 cm²/g. - [Sersic Profile](https://unseel.com/astronomy/sersic-profile.html): The Sersic profile is a single-equation description of how a galaxy's surface brightness falls from centre to edge, I(R) = I_e exp{−b_n[(... - [Seyfert Galaxy](https://unseel.com/astronomy/seyfert-galaxy.html): Seyfert galaxies are spiral galaxies hosting bright, point-like active nuclei with strong emission lines. Type 1 Seyferts show broad perm... - [Shepherd Moons](https://unseel.com/astronomy/shepherd-moons.html): Shepherd moons are tiny moons orbiting just inside and outside a planetary ring whose gravity herds stray particles back, carving the rin... - [Shoemaker-Levy 9](https://unseel.com/astronomy/shoemaker-levy-9.html): Comet Shoemaker-Levy 9 (D/1993 F2) was torn into 21 fragments by Jupiter's tidal field in 1992 and rammed into the giant planet July 16–2... - [Sidereal vs Solar Day](https://unseel.com/astronomy/sidereal-day.html): The sidereal vs solar day is the gap between Earth's 23h56m04s spin relative to the stars and the 24h00m it takes to re-face the Sun — ab... - [Silk Damping](https://unseel.com/astronomy/silk-damping.html): Silk damping is the diffusion of photons out of small overdensities before recombination, erasing CMB anisotropies on scales below a few ... - [SKA Square Kilometre Array](https://unseel.com/astronomy/ska-square-kilometer.html): The Square Kilometre Array is the world's largest radio telescope: ~131,000 low-frequency antennas in Western Australia and 197 dishes (1... - [Slow-Roll Inflation](https://unseel.com/astronomy/slow-roll-inflation.html): The standard inflation scenario: a scalar field rolling slowly down a flat potential. ε = (M_Pl/2)(V′/V)² ≪ 1 and |η| ≪ 1 give 50–60 e-fo... - [Snow Line](https://unseel.com/astronomy/snow-line-protoplanetary.html): The snow line is the radius in a protoplanetary disk beyond which water vapor freezes onto grains. In the early solar nebula it sat near ... - [Soft Gamma Repeater](https://unseel.com/astronomy/soft-gamma-repeater.html): A soft gamma repeater is a slowly spinning neutron star with a 10¹⁴–10¹⁵ G magnetic field — a magnetar — whose crust fractures and reconn... - [Solar Butterfly Diagram](https://unseel.com/astronomy/solar-butterfly-diagram.html): The solar butterfly diagram plots sunspot latitude against time. Each 11-year cycle, spots first appear near ±30–35° latitude and the act... - [Solar Corona](https://unseel.com/astronomy/solar-corona.html): The Sun's surface is 5,800 K, but its corona — the wispy outer atmosphere — reaches 2 million K. How? Likely waves and magnetic reconnect... - [Solar Cycle Dynamo](https://unseel.com/astronomy/solar-cycle-dynamo.html): The solar cycle dynamo is the 22-year mechanism that generates and reverses the Sun's magnetic field by combining differential rotation (... - [Solar Differential Rotation](https://unseel.com/astronomy/solar-differential-rotation.html): Solar differential rotation is the Sun's habit of spinning faster at its equator (~25 days) than at its poles (~35 days), winding magneti... - [Solar Eclipse](https://unseel.com/astronomy/solar-eclipse.html): 3D Sun, Moon, and Earth alignment showing how the Moon's shadow produces a total solar eclipse. Visualize the umbra and penumbra shadow c... - [Solar Flare](https://unseel.com/astronomy/solar-flare.html): A solar flare is a sudden, intense brightening from magnetic reconnection in a solar active region. Energy 10²⁰–10²⁵ J in seconds to hour... - [Solar Granulation](https://unseel.com/astronomy/solar-granulation.html): The Sun's photosphere is a sea of convection cells — each granule is ~1,000 km wide, brighter in its rising center and darker where plasm... - [Solar Neutrinos](https://unseel.com/astronomy/solar-neutrinos.html): Solar neutrinos are near-massless ghost particles made by fusion in the Sun's core. About 65 billion pass through your thumbnail every se... - [Solar Prominence](https://unseel.com/astronomy/solar-prominence.html): Plasma loops trace the Sun's magnetic field, suspended in giant arches that can be 10 Earths high. When the supporting field destabilizes... - [Solar Spicules](https://unseel.com/astronomy/solar-spicules.html): Solar spicules are thin (~500 km wide) jets of plasma launching from the chromosphere into the corona at 20–50 km/s. About 10⁶ exist on t... - [Solar System](https://unseel.com/astronomy/solar-system.html): Our solar system consists of the Sun, eight planets, dwarf planets, asteroids, and comets bound by gravity in an elegant cosmic order spa... - [Solar Tachocline](https://unseel.com/astronomy/solar-tachocline.html): The solar tachocline is a thin shear layer near 0.7 solar radii where the Sun's rotation switches from latitude-dependent in the convecti... - [Solar Wind](https://unseel.com/astronomy/solar-wind.html): The solar wind is a continuous supersonic stream of charged particles — mostly protons and electrons with about 4% doubly-ionized helium ... - [Space Weathering](https://unseel.com/astronomy/space-weathering.html): Space weathering is the gradual darkening and reddening of airless surfaces — the Moon, Mercury, and asteroids — as micrometeorite impact... - [Spaghettification](https://unseel.com/astronomy/spaghettification.html): Spaghettification is the dramatic name for tidal stretching: the difference in gravitational pull between the near and far ends of an ext... - [Speckle Imaging](https://unseel.com/astronomy/speckle-imaging.html): Speckle imaging is a technique that freezes atmospheric turbulence with thousands of millisecond exposures, then mathematically recombine... - [Spectral Energy Distribution](https://unseel.com/astronomy/spectral-energy-distribution.html): A spectral energy distribution (SED) is an object's brightness plotted across all wavelengths, from radio to gamma rays. Its shape encode... - [Spectroscopic Binary](https://unseel.com/astronomy/spectroscopic-binary.html): A spectroscopic binary is a pair of stars too close on the sky to resolve, betrayed instead by the Doppler shift of their spectral lines.... - [Spectroscopic Parallax](https://unseel.com/astronomy/spectroscopic-parallax.html): Spectroscopic parallax estimates a star's distance by classifying its spectrum to read its absolute magnitude off the H-R diagram, then c... - [Sphere of Influence](https://unseel.com/astronomy/sphere-of-influence.html): A sphere of influence is the region around an orbiting body where its gravity dominates the perturbation budget over the larger body it o... - [Spherical Collapse Model](https://unseel.com/astronomy/spherical-collapse-model.html): The spherical collapse model follows an idealized overdense sphere as it expands, slows, turns around, and collapses. It predicts the lin... - [Spider Pulsars (Black Widow & Redback)](https://unseel.com/astronomy/spider-pulsar.html): Spider pulsars are millisecond pulsars in compact binaries whose relativistic wind and high-energy radiation slowly evaporate their low-m... - [Spiral Density Wave](https://unseel.com/astronomy/spiral-density-wave.html): Spiral arms are long-lived density waves, not fixed material structures. Stars and gas overtake the slowly-rotating pattern, get compress... - [Spiral Galaxy](https://unseel.com/astronomy/spiral-galaxy.html): Spiral galaxies are rotating disk systems with a central bulge of old red stars and a thin disk of young blue stars, dust, gas, and spira... - [Standard Candle](https://unseel.com/astronomy/standard-candle.html): A standard candle is an object of known luminosity — a Type Ia supernova or a Cepheid variable — whose observed brightness reveals its di... - [Standard Ruler](https://unseel.com/astronomy/standard-ruler.html): A standard ruler is an object of known physical size — chiefly the ~150 Mpc baryon-acoustic scale — whose angular size on the sky yields ... - [Standard Siren](https://unseel.com/astronomy/standard-siren.html): A standard siren is a merging compact binary whose gravitational-wave chirp directly encodes its absolute luminosity distance — no cosmic... - [Starburst Galaxy](https://unseel.com/astronomy/starburst-galaxy.html): A starburst galaxy converts gas into stars 10 to 100 times faster than the Milky Way and would exhaust its fuel in less than a few percen... - [Starspots](https://unseel.com/astronomy/starspots.html): Starspots are cool, dark magnetic regions on a star's surface — like sunspots but often vastly larger — that dim the star and reveal its ... - [Stellar Flare](https://unseel.com/astronomy/stellar-flare.html): When twisted magnetic field lines on a star's surface snap and reconnect, they release energy equivalent to billions of H-bombs in minute... - [Stellar Magnitude System](https://unseel.com/astronomy/stellar-magnitude.html): The stellar magnitude system is a backwards, logarithmic scale for star brightness — brighter stars get smaller numbers, and 5 magnitudes... - [Stellar Nucleosynthesis](https://unseel.com/astronomy/stellar-nucleosynthesis.html): Every atom heavier than helium was forged inside a star. Fusion stages — H → He → C → O → Si → Fe — build an onion-layered core. Elements... - [Stellar Occultation](https://unseel.com/astronomy/stellar-occultation.html): A stellar occultation is the brief blocking of a background star by a foreground solar-system body. Ingress and egress light-curves, reco... - [Stellar Parallax · Measuring the Stars](https://unseel.com/astronomy/stellar-parallax.html): Stellar parallax explained in 3D — watch Earth's orbit shift nearby stars against the distant background. Learn how astronomers measure t... - [Stellar Population Synthesis](https://unseel.com/astronomy/stellar-population-synthesis.html): Stellar population synthesis models a galaxy's light as the sum of simple single-age populations (SSPs) weighted by its star-formation hi... - [Stellar Rotation](https://unseel.com/astronomy/stellar-rotation.html): Stellar rotation is the spin of a star on its axis, measured from Doppler line broadening (v sin i). Fast spin flattens stars and powers ... - [Stellar Spectral Classification](https://unseel.com/astronomy/spectral-classification.html): Stellar spectral classification sorts stars by surface temperature into the OBAFGKM sequence using absorption lines — from ~40,000 K blue... - [Stellar Spectroscopy](https://unseel.com/astronomy/stellar-spectroscopy.html): Split starlight into its rainbow and dark absorption lines appear. Each line identifies a specific element at a specific temperature. Fro... - [Stellar Stream](https://unseel.com/astronomy/stellar-stream.html): A stellar stream is a tidally disrupted dwarf galaxy or globular cluster stretched into a thin ribbon along its orbit. Streams trace the ... - [Stellar Wind](https://unseel.com/astronomy/stellar-wind.html): The Sun continuously blows a stream of charged particles outward at 400 km/s — the solar wind. It fills the heliosphere, shapes planetary... - [Stochastic Gravitational-Wave Background](https://unseel.com/astronomy/stochastic-gw-background.html): The stochastic gravitational-wave background is a persistent, random hum of spacetime made by countless individually unresolvable gravita... - [Subgiant Star](https://unseel.com/astronomy/subgiant-star.html): A subgiant star has just exhausted core hydrogen and is migrating rightward across the HR diagram toward the red giant branch. The phase ... - [Subsurface Oceans](https://unseel.com/astronomy/subsurface-ocean.html): A subsurface ocean is a layer of liquid water trapped between an icy crust and a rocky or high-pressure-ice interior, kept molten by tida... - [Sunspot Cycle](https://unseel.com/astronomy/sunspot-cycle.html): Sunspot counts rise and fall with an 11-year period, and the Sun's magnetic polarity flips every cycle (so the full cycle is 22 years). A... - [Sunyaev-Zeldovich Effect](https://unseel.com/astronomy/sunyaev-zeldovich-effect.html): The Sunyaev-Zeldovich effect is the spectral distortion left on the cosmic microwave background when its photons inverse-Compton scatter ... - [Supergranulation](https://unseel.com/astronomy/supergranulation.html): Supergranulation is a pattern of convection cells roughly 30,000 km across that tiles the Sun's surface, draining horizontal flows of 300... - [Supernova](https://unseel.com/astronomy/supernova.html): A supernova is the explosive death of a massive star, releasing more energy in seconds than the Sun will in its entire lifetime, forging ... - [Supernova Remnant](https://unseel.com/astronomy/supernova-remnant.html): A supernova remnant is the expanding shock and ejecta of a stellar explosion plowing into the interstellar medium. Four phases — free exp... - [Surface Brightness Fluctuations](https://unseel.com/astronomy/surface-brightness-fluctuation.html): Surface brightness fluctuations (SBF) measure a galaxy's distance from the pixel-to-pixel graininess of its barely-resolved stars: the va... - [Symbiotic Star](https://unseel.com/astronomy/symbiotic-star.html): A symbiotic star is an interacting binary in which a cool red giant feeds a hot white dwarf, producing a composite spectrum that mixes re... - [Synchrotron Radiation](https://unseel.com/astronomy/synchrotron-radiation.html): Synchrotron radiation is emitted by relativistic electrons spiraling in magnetic fields. It produces a power-law, highly polarized spectr... - [Synodic Period](https://unseel.com/astronomy/synodic-period.html): A synodic period is the time for two bodies to return to the same alignment as seen from one of them — the lapping interval set by the di... - [T Tauri Phase](https://unseel.com/astronomy/t-tauri-phase.html): Between birth and the main sequence, a young star contracts, spins fast, flares violently, and launches bipolar jets. T Tauri stars still... - [T Tauri Stars](https://unseel.com/astronomy/t-tauri-star.html): A T Tauri star is a young, low-mass (≲2 M☉) pre-main-sequence star, roughly 1–10 million years old, that still contracts gravitationally ... - [Technosignature](https://unseel.com/astronomy/technosignature.html): A technosignature is any remotely observable feature of a world that requires technology to explain — a narrowband radio beacon, the mid-... - [Technosignatures](https://unseel.com/astronomy/technosignatures.html): A technosignature is any observable feature of a distant world that could only be produced by technology — a narrowband radio beacon, the... - [Termination Shock](https://unseel.com/astronomy/termination-shock.html): The termination shock is the roughly spherical boundary where the supersonic solar wind abruptly decelerates from ~400 km/s to subsonic s... - [The Blandford-Znajek Mechanism](https://unseel.com/astronomy/blandford-znajek-mechanism.html): The Blandford-Znajek mechanism is the electromagnetic process by which a spinning Kerr black hole's twisted magnetic field extracts its r... - [The Bow Shock](https://unseel.com/astronomy/bow-shock.html): A bow shock is the standing shock front that forms upstream of an obstacle moving faster than the local signal speed through a plasma — m... - [The Coronagraph](https://unseel.com/astronomy/coronagraph.html): A coronagraph is an instrument that suppresses the direct light of a bright central source — the Sun, or a distant star — so that much fa... - [The Epoch of Recombination](https://unseel.com/astronomy/recombination-epoch.html): The epoch of recombination is the moment about 378,000 years after the Big Bang, at redshift z ≈ 1090 and temperature ≈ 3000 K, when free... - [The Frost Line](https://unseel.com/astronomy/frost-line.html): The frost line is the distance from a young star beyond which it is cold enough — below about 150 to 170 kelvin — for water vapour to fre... - [The Gamow Peak](https://unseel.com/astronomy/gamow-peak.html): The Gamow peak is the narrow energy window — only a few keV wide, far below the Coulomb barrier — where almost all thermonuclear fusion i... - [The Great Attractor](https://unseel.com/astronomy/great-attractor.html): A gravitational anomaly at the center of Laniakea, pulling the Milky Way and 100,000 nearby galaxies at ~600 km/s. - [The Great Filter](https://unseel.com/astronomy/great-filter.html): The Great Filter is the hypothesis that at least one improbable step blocks the path from dead chemistry to a galaxy-spanning civilizatio... - [The Green Valley](https://unseel.com/astronomy/green-valley.html): The green valley is the under-populated region of the galaxy colour–magnitude diagram between the star-forming blue cloud and the quiesce... - [The Hayashi Track](https://unseel.com/astronomy/hayashi-track.html): The Hayashi track is the near-vertical descent of pre-main-sequence stars on the H-R diagram. Fully convective, constant Teff ~4000 K, de... - [The Holographic Principle](https://unseel.com/astronomy/holographic-principle.html): The maximum information inside a region is bounded by its boundary area, not its volume. Born from black hole entropy S = A/(4Gℏ), formal... - [The Holographic Universe](https://unseel.com/astronomy/holographic-universe.html): The holographic principle proposes that all information in a volume of space is encoded on its 2D boundary at one bit per Planck area. - [The Innermost Stable Circular Orbit (ISCO)](https://unseel.com/astronomy/innermost-stable-circular-orbit.html): The innermost stable circular orbit (ISCO) is the smallest radius at which matter can hold a stable circular orbit around a black hole. I... - [The Integrated Sachs-Wolfe Effect](https://unseel.com/astronomy/integrated-sachs-wolfe-effect.html): The integrated Sachs-Wolfe (ISW) effect is the net energy shift a cosmic microwave background photon picks up as it crosses a gravitation... - [The Kelvin-Helmholtz Mechanism](https://unseel.com/astronomy/kelvin-helmholtz-mechanism.html): The Kelvin-Helmholtz mechanism is the process by which a self-gravitating body radiates energy by slowly contracting under its own gravit... - [The M–σ Relation](https://unseel.com/astronomy/m-sigma-relation.html): The M–σ relation ties a galaxy's central black-hole mass to the velocity dispersion of its bulge stars, scaling as M_BH ∝ σ⁴⁻⁵ with under... - [The NFW Dark Matter Profile](https://unseel.com/astronomy/nfw-profile.html): The NFW profile is the near-universal density law ρ(r) = ρ_s / [(r/r_s)(1 + r/r_s)²] that dark matter halos follow in cold dark matter si... - [The Oberth Effect](https://unseel.com/astronomy/oberth-effect.html): The Oberth effect is the gain in mechanical energy a rocket extracts from a fixed amount of propellant when it burns at high speed deep i... - [The Patched Conic Approximation](https://unseel.com/astronomy/patched-conic-approximation.html): The patched conic approximation plans interplanetary trajectories by stitching together two-body Kepler orbits — one for each gravitating... - [The Photon Ring](https://unseel.com/astronomy/photon-ring.html): The photon ring is a razor-thin ring of light produced by photons that orbited a black hole one or more times before escaping. Each succe... - [The Propeller Effect](https://unseel.com/astronomy/propeller-effect.html): The propeller effect is the centrifugal expulsion of infalling matter by a rapidly rotating, magnetised neutron star: when the magnetosph... - [The Radius Valley](https://unseel.com/astronomy/radius-valley.html): The radius valley is a scarcity of planets near 1.8 Earth radii that splits the small-exoplanet population into rocky super-Earths below ... - [The Rossiter-McLaughlin Effect](https://unseel.com/astronomy/rossiter-mclaughlin-effect.html): The Rossiter-McLaughlin effect is the radial-velocity anomaly seen during a planetary transit: as the planet crosses the rotating star it... - [The Schönberg-Chandrasekhar Limit](https://unseel.com/astronomy/schonberg-chandrasekhar-limit.html): The Schönberg-Chandrasekhar limit is the maximum fraction — about 10 percent — of a star's mass that an inert, isothermal helium core can... - [The Shapiro Delay](https://unseel.com/astronomy/shapiro-delay.html): The Shapiro delay is the extra light-travel time a signal picks up when it passes through the curved spacetime near a mass: a radar echo ... - [The Surface of Last Scattering](https://unseel.com/astronomy/last-scattering-surface.html): The surface of last scattering is the spherical shell, about 380,000 years after the Big Bang, from which the cosmic microwave background... - [The Tolman-Oppenheimer-Volkoff Limit](https://unseel.com/astronomy/tolman-oppenheimer-volkoff-limit.html): The Tolman-Oppenheimer-Volkoff (TOV) limit is the maximum mass a non-rotating neutron star can support against gravity using neutron dege... - [The Triple-Alpha Process](https://unseel.com/astronomy/triple-alpha-process.html): The triple-alpha process fuses three ⁴He nuclei into ¹²C via the unstable ⁸Be intermediate. Requires T > 10⁸ K, ρ > 10⁵ g/cm³. Hoyle pred... - [The Van Allen Belts](https://unseel.com/astronomy/van-allen-belts.html): The Van Allen belts are two doughnut-shaped zones of charged particles trapped by Earth's magnetic field: an inner belt of protons reachi... - [Thick & Thin Disk](https://unseel.com/astronomy/thick-thin-disk.html): The Milky Way's stars sit in two overlapping disks: a thin disk roughly 300 parsecs thick made of young, metal-rich, α-poor stars on near... - [Tidal Disruption Event](https://unseel.com/astronomy/tidal-disruption-event.html): A star passing within a black hole's tidal radius gets stretched into a spaghetti of gas, half thrown outward, half spiraling in. The acc... - [Tidal Heating](https://unseel.com/astronomy/tidal-heating.html): Tidal heating is the conversion of orbital and rotational energy into internal heat when a body is flexed by a changing tide on an eccent... - [Tidal Locking · Same Face Forever](https://unseel.com/astronomy/tidal-locking.html): Tidal locking explained in 3D — see why the Moon always shows the same face to Earth, how tidal bulges create torque, and discover mutual... - [Tidal Tails](https://unseel.com/astronomy/tidal-tail.html): A tidal tail is a long curving stream of stars and gas pulled out of a galaxy by the gravity of a passing galaxy during a close encounter... - [Tidal Tails](https://unseel.com/astronomy/tidal-tails.html): Tidal tails are long streamers of stars and gas flung out when galaxies gravitationally tear at each other. Differential gravity stretche... - [Tisserand Parameter](https://unseel.com/astronomy/tisserand-parameter.html): The Tisserand parameter is a nearly-conserved combination of a small body's semi-major axis, eccentricity, and inclination — measured rel... - [Titan Cryovolcanism](https://unseel.com/astronomy/titan-cryovolcanism.html): Cryovolcanism on Titan is the proposed eruption of water-ammonia 'icy lava' through cracks in the moon's frozen crust. Cassini-Huygens im... - [Titan's Atmosphere](https://unseel.com/astronomy/titan-atmosphere.html): Titan has Earth-like pressure, nitrogen-dominant atmosphere, clouds, rain, rivers, lakes — but all built around methane, not water. An al... - [Titius-Bode Law](https://unseel.com/astronomy/titius-bode-law.html): The Titius-Bode law is an empirical rule, a = 0.4 + 0.3 × 2ⁿ AU, that reproduces the orbital distances of the planets from Mercury to Ura... - [Toomre Q Stability](https://unseel.com/astronomy/toomre-q.html): The Toomre Q parameter is a single dimensionless number that decides whether a rotating disk of gas or stars stays smooth or fragments in... - [Transit Method](https://unseel.com/astronomy/transit-method.html): When a planet crosses in front of its star, the star dims by 0.01-1% for hours. Precision photometry across thousands of stars — Kepler, ... - [Transit of Venus](https://unseel.com/astronomy/transit-of-venus.html): A transit of Venus is the rare passage of Venus directly between Earth and the Sun, seen as a small black disk crossing the solar face. T... - [Transit Timing Variation](https://unseel.com/astronomy/transit-timing-variation.html): A transit timing variation (TTV) is a deviation from strict periodicity in the mid-transit times of an exoplanet, produced by gravitation... - [Transit Timing Variations](https://unseel.com/astronomy/transit-timing-variations.html): Transit timing variations (TTVs) are the minutes-scale shifts in when a transiting planet crosses its star, caused by the gravitational p... - [Transmission Spectroscopy](https://unseel.com/astronomy/transmission-spectroscopy.html): Transmission spectroscopy reads the absorption fingerprints in starlight filtered through an exoplanet's atmosphere during transit, revea... - [Triton's Backward Orbit](https://unseel.com/astronomy/triton-retrograde.html): Triton orbits Neptune in the opposite direction the planet spins — a dead giveaway it was captured, not born in place. It's the only larg... - [Trojan Asteroid](https://unseel.com/astronomy/trojan-asteroid.html): Trojan asteroids are bodies that share a planet's orbit, librating around the L4 and L5 Lagrange points 60° ahead of and behind the plane... - [True Polar Wander](https://unseel.com/astronomy/true-polar-wander.html): True polar wander is the reorientation of a planet or moon's entire solid shell relative to its fixed spin axis, driven so that the body'... - [Tully-Fisher Relation](https://unseel.com/astronomy/tully-fisher-relation.html): The Tully-Fisher relation ties a spiral galaxy's luminosity to its rotational velocity raised to the fourth power. Discovered in 1977, it... - [Type I X-ray Burst](https://unseel.com/astronomy/type-i-x-ray-burst.html): A Type I X-ray burst is a thermonuclear runaway of hydrogen and helium accreted onto a neutron star's surface. It flashes in X-rays every... - [Type Ia Supernova](https://unseel.com/astronomy/type-ia-supernova.html): A white dwarf sipping mass from a companion reaches the Chandrasekhar limit at 1.44 solar masses — and explodes. All type Ia supernovae p... - [Type II Supernova](https://unseel.com/astronomy/type-ii-supernova.html): A Type II supernova is the core collapse of a massive star (M > 8 M☉) that still has its hydrogen envelope. Iron core implodes to a neutr... - [Ultra-Diffuse Galaxy](https://unseel.com/astronomy/ultra-diffuse-galaxy.html): An ultra-diffuse galaxy (UDG) is as big across as the Milky Way but roughly a thousand times fainter — and a few, like NGC 1052-DF2, appe... - [Uranus's 98° Tilt](https://unseel.com/astronomy/uranus-tilt.html): Uranus rotates on its side, spinning almost perpendicular to its orbital plane. A giant impact early in solar-system history tipped it ov... - [Variable Stars](https://unseel.com/astronomy/variable-stars.html): Cepheid variables pulsate on regular cycles tied directly to their true brightness. Measure the period, derive the luminosity, compare to... - [Velocity Dispersion](https://unseel.com/astronomy/velocity-dispersion.html): Velocity dispersion is the statistical spread of stars' line-of-sight speeds in a galaxy or cluster — a measure of random motion that rev... - [Venus Greenhouse](https://unseel.com/astronomy/venus-greenhouse.html): Venus is the hottest planet in the solar system thanks to a thick CO₂ atmosphere that traps infrared radiation. Surface reaches 465°C — h... - [Venus's Superrotation](https://unseel.com/astronomy/venus-superrotation.html): Venus rotates once every 243 Earth days — but its upper atmosphere whips around the planet in just 4 days. This 'superrotation' has no Ea... - [Vera C. Rubin Observatory (LSST)](https://unseel.com/astronomy/lsst-vera-rubin.html): The Vera C. Rubin Observatory uses an 8.4-metre primary mirror, the largest digital astronomical camera ever built (3.2 gigapixels, 9.6 d... - [Very Long Baseline Interferometry](https://unseel.com/astronomy/very-long-baseline-interferometry.html): Very long baseline interferometry (VLBI) correlates signals from radio dishes thousands of kilometres apart to synthesise a virtual teles... - [Weak Gravitational Lensing](https://unseel.com/astronomy/weak-gravitational-lensing.html): Weak gravitational lensing is the percent-level coherent distortion of distant galaxy shapes by the gravity of foreground matter. Because... - [Weak Lensing](https://unseel.com/astronomy/weak-lensing.html): Weak gravitational lensing is the statistical distortion of background-galaxy shapes by foreground mass — typically a one-percent change ... - [White Dwarf](https://unseel.com/astronomy/white-dwarf.html): White dwarfs explained in 3D — watch a Sun-like star shed its outer layers and collapse into a stellar corpse the size of Earth. Interact... - [White Dwarf Cooling](https://unseel.com/astronomy/white-dwarf-cooling.html): White dwarf cooling is the slow radiative leak of leftover heat from a dead, electron-degenerate star. With no fusion, an Earth-sized car... - [White Hole](https://unseel.com/astronomy/white-hole.html): A white hole is the time-reverse of a black hole: a region of spacetime that nothing can enter and from which matter and light must emerg... - [WIMP Dark Matter](https://unseel.com/astronomy/wimp-dark-matter.html): A WIMP — Weakly Interacting Massive Particle — is a hypothetical dark-matter candidate with electroweak-scale mass (~100 GeV) and weak-sc... - [Wolf-Rayet Star](https://unseel.com/astronomy/wolf-rayet-star.html): A massive star nearing the end of its life strips its outer hydrogen layer through ferocious stellar winds. The exposed helium core blaze... - [Wormhole](https://unseel.com/astronomy/wormhole.html): A wormhole is a hypothetical bridge through spacetime connecting two distant regions by a shortcut shorter than the external route. Gener... - [X-ray Binary](https://unseel.com/astronomy/x-ray-binary.html): An X-ray binary is a stellar pair in which one component is a compact object — neutron star or stellar-mass black hole — and the other is... - [Yarkovsky Effect](https://unseel.com/astronomy/yarkovsky-effect.html): The Yarkovsky effect is a thermal-recoil force on a rotating asteroid: its afternoon side is hotter than its morning side, so it reradiat... - [YORP Effect](https://unseel.com/astronomy/yorp-effect.html): The YORP effect (Yarkovsky-O'Keefe-Radzievskii-Paddack) is an asymmetric thermal-emission torque that changes an irregular asteroid's spi... - [Zel'dovich Approximation](https://unseel.com/astronomy/zeldovich-approximation.html): The Zel'dovich approximation is a first-order Lagrangian theory of structure growth: particles stream along their initial trajectories vi... - [Zodiacal Cloud](https://unseel.com/astronomy/zodiacal-cloud.html): The zodiacal cloud is the flat disk of interplanetary dust grains (10⁻¹⁵ to 10⁻⁴ kg) concentrated near the ecliptic. Sourced by Jupiter-f... - [Zodiacal Light](https://unseel.com/astronomy/zodiacal-light.html): Zodiacal light is the faint pyramidal glow along the ecliptic produced when sunlight scatters off interplanetary dust grains between roug... ## Philosophy Logic, ethics, metaphysics, and deep questions. 100 concepts. - [Philosophy index](https://unseel.com/philosophy.html): All philosophy concepts - [A Priori vs A Posteriori Knowledge](https://unseel.com/philosophy/a-priori-a-posteriori.html): A priori knowledge is justified independently of sensory experience: 2 + 3 = 5, the law of non-contradiction, “all triangles have t... - [Abstract Objects & Platonism](https://unseel.com/philosophy/abstract-objects-platonism.html): Platonism in metaphysics is the view that abstract objects — numbers, sets, propositions, properties — exist mind-independently outside s... - [Analytic vs Synthetic Distinction](https://unseel.com/philosophy/analytic-synthetic-distinction.html): An analytic truth is true purely in virtue of the meanings of its terms — “all bachelors are unmarried” needs no fact-checkin... - [Animal Ethics](https://unseel.com/philosophy/animal-ethics.html): Animal ethics is the branch of moral philosophy that asks whether non-human animals have moral status and what humans owe them. The moder... - [Aristotle's Four Causes](https://unseel.com/philosophy/four-causes-aristotle.html): Aristotle held that to know a thing fully, you must give four kinds of explanation: what it's made of, what it is, what brings it about, ... - [Aristotle's Golden Mean](https://unseel.com/philosophy/golden-mean.html): The Golden Mean (mesotēs) is Aristotle's doctrine that each moral virtue is a mean between two corresponding vices — one of excess, one o... - [Behaviorism](https://unseel.com/philosophy/behaviorism.html): Early 20th century: ignore inner mental states; catalog stimulus-response patterns. Skinner's pigeons, Pavlov's dogs, reinforcement sched... - [Brain in a Vat](https://unseel.com/philosophy/brain-in-vat.html): The Brain in a Vat is a modern reformulation of Cartesian skepticism: could you be a disembodied brain receiving simulated stimuli, with ... - [Buddhism's Four Noble Truths](https://unseel.com/philosophy/buddhism-four-truths.html): Dukkha (suffering exists), tanha (craving is its root), nirvana (cessation is possible), and the Eightfold Path (how). The Buddha's diagn... - [Care Ethics (Feminist)](https://unseel.com/philosophy/care-ethics.html): Care ethics is a feminist moral theory that locates the foundation of ethics in particular caring relationships — between parent and chil... - [Categorical Imperative](https://unseel.com/philosophy/categorical-imperative.html): 3D grid of people each performing an action. Animate testing if the action can become a universal law: if everyone lies, trust collapses ... - [Causation](https://unseel.com/philosophy/causation-hume.html): We see A followed by B, over and over. The causal connection itself is invisible — we project necessity onto pattern. Hume's analysis sti... - [Chinese Room](https://unseel.com/philosophy/chinese-room.html): A person in a room follows rules to manipulate Chinese symbols without understanding them. Outside observers think the room speaks Chines... - [Cogito Ergo Sum](https://unseel.com/philosophy/cogito-ergo-sum.html): 3D visualization of Descartes' method of doubt. Objects in the scene disappear one by one (senses deceive, world might be a dream) until ... - [Coherence Theory of Truth](https://unseel.com/philosophy/coherence-truth.html): The coherence theory of truth holds that a proposition is true if and only if it belongs to a maximally coherent system of beliefs. Defen... - [Compatibilism (Free Will)](https://unseel.com/philosophy/compatibilism.html): Compatibilism is the view that free will and causal determinism are compatible. The free agent isn't one who escapes causation; she's one... - [Confucius & Ren](https://unseel.com/philosophy/confucius-ren.html): Ren (humaneness) cultivated through five reciprocal relationships: ruler-subject, parent-child, husband-wife, elder-younger, friends. Fil... - [Correspondence Theory of Truth](https://unseel.com/philosophy/truth-correspondence.html): The correspondence theory of truth holds that a proposition is true if and only if it corresponds to a fact about the world. The dominant... - [Cosmological Argument](https://unseel.com/philosophy/cosmological-argument.html): The cosmological argument is a family of a posteriori arguments for God's existence that begin from the bare fact that the world exists. ... - [Cynicism (Diogenes)](https://unseel.com/philosophy/cynicism-philosophy.html): Cynicism is the ancient Greek school that took virtue ethics to its most uncompromising end: virtue is sufficient for happiness, virtue i... - [Deontology](https://unseel.com/philosophy/deontology.html): Ethics is about following moral rules, not maximizing outcomes. Kant's universalizability test: if everyone did this, would the practice ... - [Determinism](https://unseel.com/philosophy/determinism.html): Determinism is the thesis that the complete state of the universe at any moment, together with the laws of nature, fixes the complete sta... - [Divine Command Theory](https://unseel.com/philosophy/divine-command-theory.html): Divine Command Theory (DCT) is the position that an action is morally right because — and only because — God commands it. Wrongness is wh... - [Doctrine of Double Effect](https://unseel.com/philosophy/doctrine-of-double-effect.html): The Doctrine of Double Effect (DDE) holds that an action with both a good and a bad effect can be permissible if the bad effect is forese... - [Emergentism](https://unseel.com/philosophy/emergentism.html): Emergentism is the view that some higher-level properties — life, consciousness, social structure — arise from lower-level physical syste... - [Emotivism (Ayer)](https://unseel.com/philosophy/emotivism.html): Emotivism is the meta-ethical view that moral utterances express emotional attitudes rather than state facts. A. J. Ayer's Language, Trut... - [Environmental Ethics](https://unseel.com/philosophy/environmental-ethics.html): Environmental ethics is the branch of moral philosophy that asks whether the non-human natural world — species, ecosystems, mountains, ri... - [Epicureanism](https://unseel.com/philosophy/epicureanism.html): Epicureanism is the Hellenistic philosophy founded by Epicurus (~341–270 BCE) at his Athenian school known as the Garden. Its goal is eud... - [Ethics of AI](https://unseel.com/philosophy/ethics-of-ai.html): The ethics of AI asks how to build, deploy, and govern artificial systems whose decisions affect human lives. From Nick Bostrom's Superin... - [Eudaimonia (Aristotle)](https://unseel.com/philosophy/eudaimonia-aristotle.html): Eudaimonia is Aristotle's term in the Nicomachean Ethics (~340 BCE) for the highest human good — usually translated "flourishing" or "liv... - [Existentialism (Sartre)](https://unseel.com/philosophy/existentialism-sartre.html): Unlike objects, humans exist first and define themselves through choices. Radical freedom brings anguish and responsibility. 'Bad faith' ... - [External World Skepticism](https://unseel.com/philosophy/skepticism-external-world.html): How do we know the external world is real? You could be dreaming, brain in a vat, or fed simulations by an evil demon. From inside, a per... - [Falsifiability (Popper)](https://unseel.com/philosophy/falsifiability-popper.html): Falsifiability is Karl Popper's proposed criterion for distinguishing scientific from non-scientific theories. A theory is scientific, Po... - [Free Will vs Determinism](https://unseel.com/philosophy/free-will.html): 3D forking paths at decision points. One side shows a deterministic chain of dominoes falling in a fixed sequence. The other side shows a... - [Functionalism](https://unseel.com/philosophy/functionalism.html): Mental states are defined by functional role — caused by inputs, causing outputs — not substrate. Any system playing the role has the sta... - [Gettier Problem](https://unseel.com/philosophy/gettier-problem.html): A 3-page 1963 paper by Edmund Gettier broke the 2000-year definition of knowledge as justified true belief. Lucky coincidences can produc... - [Hard Problem of Consciousness](https://unseel.com/philosophy/consciousness-hard-problem.html): The 'easy problems' — how the brain processes information — yield to science. The hard problem: why is there subjective experience at all... - [Hedonism](https://unseel.com/philosophy/hedonism.html): Epicurus distinguished sustainable tranquility (ataraxia) from intense short-lived pleasure. Simple food, friends, reflection over fame a... - [Heidegger's Being and Time](https://unseel.com/philosophy/heidegger-being-time.html): In Sein und Zeit (1927), Martin Heidegger argues that the question of Being has been forgotten. He approaches it through Dasein — the hum... - [Is-Ought Problem](https://unseel.com/philosophy/is-ought-problem.html): You can't derive an 'ought' from an 'is' by pure logic. Descriptive facts don't entail normative conclusions without a normative premise.... - [Just War Theory](https://unseel.com/philosophy/just-war-theory.html): When is war justified (just cause, last resort), and how must it be fought (discrimination, proportionality, no evil means)? Augustine, A... - [Language Games (Wittgenstein)](https://unseel.com/philosophy/wittgenstein-language-games.html): Ludwig Wittgenstein's later philosophy abandoned the picture theory of his Tractatus and replaced it with "language games" — meaning is u... - [Liar Paradox](https://unseel.com/philosophy/liar-paradox.html): The liar paradox arises from a sentence that asserts its own falsity: this sentence is false. If it's true, it's false; if it's false, it... - [Logical Fallacies](https://unseel.com/philosophy/logical-fallacies.html): Ad hominem, straw man, false dichotomy, slippery slope. Bad arguments that feel persuasive by exploiting emotion, tribalism, and cognitiv... - [Marx's Theory of Alienation](https://unseel.com/philosophy/marx-alienation.html): Marx's theory of alienation, set out in the 1844 Economic and Philosophic Manuscripts, claims that wage labour under capitalism severs th... - [Mary's Room (Knowledge Argument)](https://unseel.com/philosophy/mary-the-color-scientist.html): Mary the colour scientist knows every physical fact about red but has lived her entire life in a black-and-white room. When she finally s... - [Meta-Ethics](https://unseel.com/philosophy/meta-ethics.html): Realism: moral facts are objective like math. Error theory: all moral claims are false. Expressivism: moral talk expresses emotion. Const... - [Mind-Body Problem](https://unseel.com/philosophy/mind-body-problem.html): Is the mind a separate substance from the body? Descartes said yes (dualism); materialism says no — the mind IS the brain. Each view has ... - [Modal Realism](https://unseel.com/philosophy/modal-realism.html): David Lewis argued all logically possible worlds are as real as ours. Counterfactuals are made true by what happens in the nearest world ... - [Modus Ponens](https://unseel.com/philosophy/modus-ponens.html): Classical logic's simplest valid form. Also: modus tollens (P→Q, ¬Q, therefore ¬P). Affirming the consequent is the sibling fallacy. Thes... - [Moral Luck](https://unseel.com/philosophy/moral-luck.html): Two drivers equally drunk. One arrives home. One kills a child. Same act, same character, wildly different judgment. Nagel showed moralit... - [Moral Realism](https://unseel.com/philosophy/moral-realism.html): Moral realism is the meta-ethical view that there are mind-independent moral facts and that some moral statements are objectively true. T... - [Moral Relativism](https://unseel.com/philosophy/moral-relativism.html): Different cultures hold different moral codes. Normative relativism says no culture is objectively better — tolerance at the cost of bein... - [Natural Law Theory](https://unseel.com/philosophy/natural-law-theory.html): Natural law theory holds that moral norms are grounded in human nature and accessible to reason — that there is a law above human law tha... - [Natural Rights](https://unseel.com/philosophy/natural-rights.html): Locke's unalienable rights — possessed by every person in virtue of being human, not granted by government. Government's job is to protec... - [Necessary vs Contingent Truths](https://unseel.com/philosophy/necessary-vs-contingent.html): A necessary truth holds in every possible world: 2 + 2 = 4, “triangles have three sides,” on Kripke's account “water is... - [Neoplatonism (Plotinus)](https://unseel.com/philosophy/neoplatonism.html): Neoplatonism is a third-century philosophical synthesis founded by Plotinus (c. 204–270 CE) that recasts Plato's metaphysics around a sin... - [Nietzsche's Eternal Recurrence](https://unseel.com/philosophy/nietzsche-eternal-recurrence.html): The eternal recurrence is Nietzsche's thought experiment that this same life — every joy, every pain, every detail — repeats infinitely. ... - [Nietzsche's Übermensch](https://unseel.com/philosophy/nietzsche-ubermensch.html): After 'God is dead,' most settle into herd conformity (the 'last man'). Nietzsche's higher ideal: create your own values, overcome yourse... - [Nozick's Libertarianism](https://unseel.com/philosophy/nozick-libertarianism.html): Robert Nozick's libertarianism, set out in Anarchy, State, and Utopia (1974), defends the minimal state on the basis of inviolable indivi... - [Occam's Razor](https://unseel.com/philosophy/ockhams-razor.html): Occam's Razor — also called the principle of parsimony or lex parsimoniae — says: when two hypotheses explain the same evidence, prefer t... - [Ontological Argument (Anselm)](https://unseel.com/philosophy/ontological-argument.html): The ontological argument is an a priori proof for God's existence that starts from the concept of God alone — no appeal to the world, no ... - [Panopticon](https://unseel.com/philosophy/panopticon.html): Bentham's circular prison design where inmates never know when they're watched — so they behave as if always watched. Foucault extended i... - [Paradigm Shift (Kuhn)](https://unseel.com/philosophy/paradigm-shift-kuhn.html): A paradigm shift is the wholesale replacement of one scientific worldview by another. Thomas Kuhn introduced the term in The Structure of... - [Parfit on Personal Identity](https://unseel.com/philosophy/parfit-personal-identity.html): Derek Parfit's Reasons and Persons (Oxford, 1984) defends two surprising claims about the self. First, persons are nothing over and above... - [Pascal's Wager](https://unseel.com/philosophy/pascals-wager.html): Pascal's Wager is a 17th-century argument that belief in God is the rational bet because the possible payoff is infinite while the cost o... - [Personal Identity](https://unseel.com/philosophy/personal-identity.html): Body, memory, or psychological continuity? A teleporter that splits you into two copies reveals identity's fragility. Parfit argued conti... - [Phenomenology (Husserl)](https://unseel.com/philosophy/phenomenology-husserl.html): Phenomenology, founded by Edmund Husserl, is the rigorous descriptive study of conscious experience as it is lived. Logical Investigation... - [Philosophical Zombies](https://unseel.com/philosophy/philosophical-zombies.html): A p-zombie is physically identical to you but has no inner experience. Chalmers uses them to argue consciousness isn't reducible to physi... - [Philosophy of Time](https://unseel.com/philosophy/time-philosophy.html): Does only the present exist (presentism), or do past, present, and future all equally exist (eternalism/block universe)? Einstein's relat... - [Plato's Cave](https://unseel.com/philosophy/platos-cave.html): 3D cave with prisoners chained facing a wall. Animate shadows projected by objects behind them, then one prisoner breaks free and turns t... - [Plato's Theory of Forms](https://unseel.com/philosophy/plato-forms.html): Plato's Theory of Forms holds that the changing world of sensible particulars is not the deepest reality. Beyond it lies a realm of etern... - [Positive & Negative Liberty](https://unseel.com/philosophy/liberty-positive-negative.html): Negative liberty: freedom FROM interference. Positive liberty: freedom TO achieve. Welfare programs trade some of the first for more of t... - [Pragmatism](https://unseel.com/philosophy/pragmatism.html): Pragmatism is the American philosophical tradition that judges concepts and beliefs by their practical consequences. Founded by Charles S... - [Private Language Argument](https://unseel.com/philosophy/private-language-argument.html): Wittgenstein's private-language argument (Philosophical Investigations §§243–315) claims that a language whose words refer to inner sensa... - [Problem of Evil](https://unseel.com/philosophy/problem-of-evil.html): The problem of evil is the most discussed objection to theism in the Western philosophical tradition. In its sharpest form it claims that... - [Problem of Induction](https://unseel.com/philosophy/problem-of-induction.html): How do we justify that the future will resemble the past? Any answer seems to assume the principle it's trying to prove. Hume concluded i... - [Rawls' Theory of Justice](https://unseel.com/philosophy/justice-rawlsian.html): Design society not knowing your race, gender, wealth, or talents. You'd choose principles protecting the worst-off (difference principle)... - [Realism vs Anti-Realism](https://unseel.com/philosophy/realism-vs-anti-realism.html): The realism debate asks whether there is a world independent of our minds, and whether our best theories describe it accurately. Realism ... - [Science vs Pseudoscience](https://unseel.com/philosophy/science-vs-pseudoscience.html): Science makes risky, falsifiable predictions. Pseudoscience accommodates any outcome. Popper's demarcation criterion separates Einstein f... - [Ship of Theseus](https://unseel.com/philosophy/ship-of-theseus.html): 3D ship with planks being replaced one by one. Each old plank flies off and a new glowing plank takes its place. After all planks are rep... - [Simulation Argument (Bostrom)](https://unseel.com/philosophy/simulation-argument-bostrom.html): Nick Bostrom's 2003 simulation argument is not "we live in The Matrix". It is a probabilistic trilemma: if any technologically mature civ... - [Sisyphus & Absurdism](https://unseel.com/philosophy/absurdism.html): 3D Sisyphus pushing a boulder up a hill. Each time it reaches the top, it rolls back down. But Sisyphus smiles — Camus says we must imagi... - [Social Contract](https://unseel.com/philosophy/social-contract.html): Three philosophers imagining government's origin. Hobbes: a Leviathan to escape nasty nature. Locke: protect natural rights. Rousseau: ex... - [Socratic Method](https://unseel.com/philosophy/socratic-method.html): 3D dialogue tree branching outward. A central question node spawns follow-up questions, each answer reveals assumptions that get challeng... - [Sorites Paradox (Heap)](https://unseel.com/philosophy/sorites-paradox.html): The Sorites Paradox asks when a heap stops being a heap as you remove grains one by one. Either every grain matters (which seems false) o... - [Stoicism](https://unseel.com/philosophy/stoicism.html): Distinguish what you control (your judgments, effort) from what you don't (others, outcomes). Focus on the first. Epictetus: 'It's not ev... - [Supervenience](https://unseel.com/philosophy/supervenience.html): Supervenience is a relation of asymmetric dependence: A-properties supervene on B-properties when no two things can differ in A without d... - [Tabula Rasa](https://unseel.com/philosophy/tabula-rasa.html): Locke argued the mind at birth is empty. All knowledge traces back to experience — no innate ideas. Simple sensations combine into comple... - [Taoism & Wu Wei](https://unseel.com/philosophy/taoism-wuwei.html): Water flows around rocks and still carves canyons. Wu wei — effortless action aligned with the natural flow. Not passivity; efficacy thro... - [Teleological Argument (Design)](https://unseel.com/philosophy/teleological-argument.html): The teleological argument infers a designer from the apparent order, complexity, or purposiveness of nature. The Greek telos means "end" ... - [The Golden Rule](https://unseel.com/philosophy/golden-rule.html): Treat others as you'd want to be treated. Confucius, Jesus, Hillel, Kant, and the Quran all have versions. Reciprocity as a near-universa... - [Trolley Problem](https://unseel.com/philosophy/trolley-problem.html): 3D trolley on tracks heading toward five people. Animate the lever switch diverting it to a side track with one person. Show the moral ch... - [Types of Knowledge](https://unseel.com/philosophy/knowledge-types.html): Propositional (knowing Paris is in France), procedural (knowing how to ride a bike), and acquaintance (knowing the color red). Three kind... - [Utilitarianism](https://unseel.com/philosophy/utilitarianism.html): Right action maximizes happiness across all affected. Bentham and Mill's consequentialist theory underlies modern welfare economics and c... - [Valid vs Sound](https://unseel.com/philosophy/valid-vs-sound.html): An argument is valid if structure guarantees the conclusion. Sound if valid AND premises are true. 'All birds fly; penguins are birds; pe... - [Veil of Ignorance](https://unseel.com/philosophy/veil-of-ignorance.html): 3D figures behind a translucent veil, unable to see their own attributes (wealth, race, ability). They must design rules for society not ... - [Virtue Ethics](https://unseel.com/philosophy/virtue-ethics.html): Aristotle asked not 'what should I do?' but 'what kind of person should I be?' Virtues sit between deficiency and excess — courage betwee... - [Yin and Yang](https://unseel.com/philosophy/yin-yang.html): 3D rotating yin-yang symbol with opposing forces flowing into each other. Light particles flow into dark and dark into light, showing how... - [Zeno's Paradoxes](https://unseel.com/philosophy/zenos-paradoxes.html): Zeno of Elea's paradoxes — Achilles and the Tortoise, the Dichotomy, the Arrow — argue that motion and plurality are illusions. They surv... ## Economics Markets, incentives, behaviour, and allocation. 209 concepts. - [Economics index](https://unseel.com/economics.html): All economics concepts - [Adverse Selection](https://unseel.com/economics/adverse-selection.html): Adverse selection is the entry-side version of Akerlof's lemons: when one side knows their type, the people who self-select into the mark... - [Aggregate Demand](https://unseel.com/economics/aggregate-demand.html): AD = C + I + G + NX, summing consumption, investment, government, and net exports. Downward-sloping: lower price levels trigger wealth, i... - [Aggregate Supply](https://unseel.com/economics/aggregate-supply.html): SRAS slopes upward because wages are sticky; higher prices let firms temporarily expand. LRAS is vertical at potential GDP — in the long ... - [Allais Paradox](https://unseel.com/economics/allais-paradox.html): The Allais paradox: most people prefer $1M certain to a lottery (10% $5M + 89% $1M + 1% $0), then flip to the riskier choice when 0.89 of... - [Anchoring Bias](https://unseel.com/economics/anchoring-bias.html): Anchoring bias is the systematic tendency to weight an initial reference number too heavily when estimating an unknown quantity. Tversky ... - [Arbitrage](https://unseel.com/economics/arbitrage.html): Arbitrage is the simultaneous purchase and sale of equivalent or near-equivalent assets at different prices to lock in a riskless profit.... - [Arrow–Debreu Securities](https://unseel.com/economics/arrow-debreu-securities.html): An Arrow–Debreu security pays $1 in one state of the world and $0 in every other. Any payoff can be replicated as a linear combination — ... - [Arrow's Impossibility Theorem](https://unseel.com/economics/arrow-impossibility.html): Arrow's Impossibility Theorem (Kenneth Arrow, 1951) proves that no ranked-choice voting rule with three or more alternatives can satisfy ... - [Auction Mechanisms](https://unseel.com/economics/auction-mechanisms.html): English ascending, Dutch descending, first-price sealed-bid, second-price sealed-bid (Vickrey). Vickrey has a dominant strategy: bid your... - [Austrian Economics](https://unseel.com/economics/austrian-economics.html): Austrian economics is a heterodox school built on subjective value, methodological individualism, and the limits of central planning. It ... - [Balance of Payments](https://unseel.com/economics/balance-of-payments.html): The balance of payments (BoP) is the double-entry record of every economic transaction between residents of a country and the rest of the... - [Balassa-Samuelson Effect](https://unseel.com/economics/balassa-samuelson-effect.html): Productivity in tradable sectors lifts wages economy-wide, but services are non-tradable and inherit those wages with no efficiency gain.... - [Bank Run — The Diamond-Dybvig Model](https://unseel.com/economics/bank-run-diamond-dybvig.html): A bank run is a self-fulfilling collapse of a fractional-reserve bank: depositors withdraw because they fear others will withdraw, even w... - [Basel III](https://unseel.com/economics/basel-iii.html): Basel III is the international regulatory framework that forces banks to hold thick layers of loss-absorbing capital and liquid assets so... - [Bayesian Nash Equilibrium](https://unseel.com/economics/bayesian-nash-equilibrium.html): Bayesian Nash equilibrium extends Nash to games with private types. Each player maximises expected payoff over beliefs about others. Hars... - [Behavioral Economics](https://unseel.com/economics/behavioral-economics.html): Why humans make irrational decisions — loss aversion, anchoring, default effect, present bias, herd behavior, and nudges. - [Bertrand Competition](https://unseel.com/economics/bertrand-competition.html): Bertrand competition is a price-setting oligopoly model in which two or more firms simultaneously post prices for identical products and ... - [Beveridge Curve](https://unseel.com/economics/beveridge-curve.html): The Beveridge curve is the negative empirical relationship between job vacancies and unemployment. Movements along the curve trace the bu... - [Binomial Options Pricing](https://unseel.com/economics/binomial-options-pricing.html): The Cox-Ross-Rubinstein 1979 binomial model prices options on a discrete tree of up/down stock moves. It converges to Black-Scholes as st... - [Black-Scholes Option Pricing](https://unseel.com/economics/black-scholes.html): The Black-Scholes-Merton formula prices a European call or put option as the discounted risk-neutral expectation of its payoff, assuming ... - [Bond Duration](https://unseel.com/economics/bond-duration.html): Bond duration is the price-weighted average time to receive a bond's cash flows. Modified duration converts it into a price-sensitivity c... - [Bond Pricing](https://unseel.com/economics/bond-pricing.html): When market rates rise, existing bonds paying lower coupons lose value. Bond price and yield move in opposite directions — always. Durati... - [Brain Drain](https://unseel.com/economics/brain-drain.html): Brain drain is the emigration of high-skilled workers from developing to developed countries. ~30M college-educated immigrants in the OEC... - [Bretton Woods System](https://unseel.com/economics/bretton-woods.html): The Bretton Woods system (1944-1971) was an international monetary regime under which member countries pegged their currencies to the U.S... - [Budget Constraint](https://unseel.com/economics/budget-constraint.html): The budget constraint draws the affordability frontier: every bundle of two goods that exhausts a fixed income at given prices. The equat... - [Bundling Pricing](https://unseel.com/economics/bundling-pricing.html): Bundling pricing sells two or more goods together at a combined price. Adams & Yellen 1976 showed that when consumer valuations are n... - [Business Cycle](https://unseel.com/economics/business-cycle.html): Economies oscillate through four phases: expansion, peak, contraction, trough. Typical cycle lasts 5-10 years. Smoothing this cycle is th... - [Capital Asset Pricing Model (CAPM)](https://unseel.com/economics/capm.html): The Capital Asset Pricing Model prices a risky asset's expected return as the risk-free rate plus the asset's beta times the market risk ... - [Capital Budgeting](https://unseel.com/economics/capital-budgeting.html): Discount future cash flows by (1+r)^t. If sum exceeds initial cost, NPV > 0 — accept. IRR is the rate making NPV zero. Capital budgeting'... - [Centipede Game](https://unseel.com/economics/centipede-game.html): The centipede game: backward induction predicts immediate defection at node 1, but humans cooperate four nodes deep. Rosenthal 1981 made ... - [Circular Economy](https://unseel.com/economics/circular-economy.html): A circular economy is an economic system aimed at eliminating waste and the continual use of resources through reuse, sharing, repair, an... - [Coase Theorem](https://unseel.com/economics/coase-theorem.html): Ronald Coase's 1960 paper "The Problem of Social Cost" upended the textbook treatment of externalities. Pigou had argued that pollution a... - [Cobb-Douglas Production Function](https://unseel.com/economics/cobb-douglas-production.html): The Cobb-Douglas production function Y = A K^α L^(1-α) is the workhorse model of capital, labor, and output in macroeconomics. Constant r... - [Comparative Advantage](https://unseel.com/economics/comparative-advantage.html): 3D production possibility frontiers for two countries. Animate how both countries benefit by specializing in what they produce at lower o... - [Compensating Differentials](https://unseel.com/economics/compensating-differentials.html): A compensating differential is the wage premium (or discount) a job must pay in equilibrium to offset its non-wage characteristics — risk... - [Compound Interest](https://unseel.com/economics/compound-interest.html): 3D bar chart showing money growing over time with compound interest. - [Consumer Surplus](https://unseel.com/economics/consumer-surplus.html): The total benefit consumers get from buying at market price versus what they'd be willing to pay. Graphically, the triangular area under ... - [Coordination Game](https://unseel.com/economics/coordination-game.html): A coordination game has multiple pure-strategy Nash equilibria in which players prefer to match — drive left or drive right, stag or hare... - [Cournot Competition](https://unseel.com/economics/cournot-competition.html): Cournot competition is the 1838 oligopoly model in which firms simultaneously choose quantities, the market clears at price P = a − bQ, a... - [Creative Destruction](https://unseel.com/economics/creative-destruction.html): Creative destruction is the process where industrial mutation incessantly revolutionizes the economic structure from within, destroying t... - [Credit Default Swap](https://unseel.com/economics/credit-default-swap.html): A credit default swap is an over-the-counter derivative in which the protection buyer pays a periodic premium (the CDS spread, quoted in ... - [Cross-Price Elasticity](https://unseel.com/economics/cross-price-elasticity.html): Cross-price elasticity of demand (XED) measures how the quantity demanded of one good changes when the price of another good changes. The... - [Crowding Out](https://unseel.com/economics/crowding-out.html): Crowding out is the displacement of private spending — usually investment — when the government finances deficits by borrowing in the sam... - [Cryptocurrency](https://unseel.com/economics/cryptocurrency.html): How cryptocurrency works — blockchain, mining, decentralized transactions, Bitcoin, Ethereum, and smart contracts. - [Currency Board](https://unseel.com/economics/currency-board.html): A currency board fixes the exchange rate by backing every domestic note one-for-one with foreign reserves and stripping the central bank ... - [Deadweight Loss](https://unseel.com/economics/deadweight-loss.html): Value destroyed by taxes, price ceilings, or quotas — trades that would have happened but don't. A triangle of waste that benefits no one. - [Demographic Dividend](https://unseel.com/economics/demographic-dividend.html): A demographic dividend is the growth windfall a country gets when its working-age share peaks during the transition from high fertility a... - [Derivatives](https://unseel.com/economics/derivatives.html): Contracts whose value comes from an underlying asset. Calls right to buy, puts right to sell, futures obligate trade. Used for hedging (f... - [Dictator Game](https://unseel.com/economics/dictator-game.html): In the dictator game one player unilaterally splits an endowment with a passive recipient who cannot reject. Standard rational theory pre... - [Diminishing Marginal Utility](https://unseel.com/economics/marginal-utility.html): 3D bar chart showing satisfaction from consuming each additional unit of a good. The first slice of pizza gives huge utility, but each ad... - [Discounted Cash Flow (DCF)](https://unseel.com/economics/discounted-cash-flow.html): A discounted cash flow valuation prices an asset as the present value of its expected future free cash flows, discounted at a rate that r... - [Dornbusch Overshooting](https://unseel.com/economics/dornbusch-overshooting.html): Rudiger Dornbusch's 1976 model: when monetary policy changes, the exchange rate jumps past its long-run equilibrium and slowly returns. S... - [Dutch Disease](https://unseel.com/economics/dutch-disease.html): Dutch disease is an economic phenomenon where the rapid development of one sector (usually natural resources) leads to a decline in other... - [Dynamic Stochastic General Equilibrium](https://unseel.com/economics/dsge-model.html): DSGE models: households + firms + central bank all optimize under uncertainty. Workhorse of modern central banks. Smets-Wouters 2007 is t... - [Economic Growth](https://unseel.com/economics/economic-growth.html): Output per worker depends on capital per worker with diminishing returns. Saving builds capital; depreciation erodes it. They balance at ... - [Edgeworth Box](https://unseel.com/economics/edgeworth-box.html): The Edgeworth box plots two consumers' bundles on the same diagram. Indifference curves tangency = the contract curve, the locus of Paret... - [Efficient Market Hypothesis](https://unseel.com/economics/efficient-market-hypothesis.html): The Efficient Market Hypothesis (EMH) claims asset prices fully reflect available information. New information arrives randomly, so price... - [Ellsberg Paradox](https://unseel.com/economics/ellsberg-paradox.html): The Ellsberg paradox: people prefer known 50/50 probabilities to unknown ratios, violating subjective expected utility. Foundation of amb... - [Endogenous Growth Theory](https://unseel.com/economics/endogenous-growth.html): Endogenous growth theory explains long-run growth from inside the model. Knowledge is non-rival and accumulates without bound, breaking t... - [Envelope Theorem](https://unseel.com/economics/envelope-theorem.html): The envelope theorem says that at an optimum, the total derivative of the value function with respect to a parameter equals the partial d... - [Equity Risk Premium](https://unseel.com/economics/equity-risk-premium.html): The equity risk premium (ERP) is the excess return investors demand for holding stocks instead of risk-free bonds: ERP = E[r_market] − r_... - [Exchange Rate](https://unseel.com/economics/exchange-rate.html): The price of one currency in another, set by capital flows, trade, inflation, and interest rates. Rising US rates attract foreign capital... - [Expected Utility Theorem (von Neumann-Morgenstern)](https://unseel.com/economics/expected-utility-theorem.html): The expected utility theorem says any preference over lotteries that satisfies completeness, transitivity, continuity, and independence c... - [Externalities](https://unseel.com/economics/externalities.html): Actions that affect uninvolved parties. Pollution hurts neighbors; vaccination protects strangers. Markets produce too much of negative e... - [Fiat vs Commodity Money](https://unseel.com/economics/fiat-vs-commodity-money.html): Commodity money is a medium of exchange that has value as something else — gold, silver, salt, cattle, cigarettes. Fiat money is paper, c... - [First Fundamental Welfare Theorem](https://unseel.com/economics/first-fundamental-welfare-theorem.html): The First Welfare Theorem states that any competitive equilibrium is Pareto efficient — under no externalities, complete markets, and loc... - [Fiscal Policy](https://unseel.com/economics/fiscal-policy.html): 3D circular flow diagram showing money moving between government, households, and businesses. Animate expansionary policy with increased ... - [Fisher Equation](https://unseel.com/economics/fisher-equation.html): The Fisher equation links nominal interest rates, real interest rates, and expected inflation: (1+i) = (1+r)(1+π^e), approximately i ≈ r ... - [Floating vs Fixed Exchange Rates](https://unseel.com/economics/floating-fixed-exchange-rate.html): A floating exchange rate is set by supply and demand in the foreign-exchange market with no official target. A fixed exchange rate commit... - [Fractional-Reserve Banking](https://unseel.com/economics/fractional-reserve-banking.html): Fractional-reserve banking is the system in which commercial banks hold only a fraction of customer deposits as reserves and lend the res... - [Friedman's Permanent Income Hypothesis](https://unseel.com/economics/friedman-permanent-income.html): Friedman's Permanent Income Hypothesis: consumption depends on long-run expected (permanent) income, not the volatile current paycheck. T... - [General Equilibrium](https://unseel.com/economics/general-equilibrium.html): General equilibrium: prices clear every market simultaneously. Existence proved by Arrow and Debreu (1954) using Brouwer's and Kakutani's... - [Giffen Good](https://unseel.com/economics/giffen-good.html): A Giffen good is an inferior staple whose demand rises when its price rises — the rare textbook exception to the law of demand. For decad... - [Gig Economy](https://unseel.com/economics/gig-economy.html): The gig economy is a labor market characterized by short-term contracts or freelance work as opposed to permanent jobs, often mediated by... - [Gross Domestic Product](https://unseel.com/economics/gdp.html): 3D stacked bar chart breaking down GDP into its four components: consumption, investment, government spending, and net exports. Animate e... - [Heckscher-Ohlin Model](https://unseel.com/economics/heckscher-ohlin.html): The Heckscher-Ohlin model says countries export goods that intensively use their relatively abundant factor: China (labor-abundant) ships... - [Hicksian Demand](https://unseel.com/economics/hicksian-demand.html): Hicksian (compensated) demand h(p, u) is the bundle that minimizes expenditure subject to reaching utility u at prices p. Always downward... - [Homothetic Preferences](https://unseel.com/economics/homothetic-preferences.html): Homothetic preferences are preferences whose indifference curves are radial expansions of one another. Demand is linear in income: x_i(p,... - [Human Capital](https://unseel.com/economics/human-capital.html): Education is an investment. Each year of schooling raises earnings by 8-10% on average (Mincer return). College grads earn ~75% more over... - [Hyperbolic Discounting](https://unseel.com/economics/hyperbolic-discounting.html): Hyperbolic discounting is the empirical pattern in which people value near-term rewards far more steeply than distant ones, causing prefe... - [Hyperinflation](https://unseel.com/economics/hyperinflation.html): Hyperinflation is a very high and typically accelerating inflation rate that quickly erodes the real value of the local currency, often e... - [Impossible Trinity (Trilemma)](https://unseel.com/economics/impossible-trinity.html): The impossible trinity says a country cannot have a fixed exchange rate, free capital movement and an independent monetary policy at the ... - [Income Elasticity](https://unseel.com/economics/income-elasticity.html): Income elasticity of demand (Y_E) measures how strongly the quantity demanded of a good responds to a change in income. The number sorts ... - [Indifference Curves](https://unseel.com/economics/indifference-curves.html): An indifference curve traces every bundle of two goods that delivers the same utility — the consumer is indifferent between any two point... - [Inequality Measurement](https://unseel.com/economics/inequality-measurement.html): The Lorenz curve plots cumulative income share vs population share. The Gini coefficient measures how far it bows below the equality line... - [Inflation](https://unseel.com/economics/inflation.html): 3D visualization of inflation. Show a stack of coins shrinking in purchasing power over time as price levels rise. Animate a price index ... - [Information Ratio](https://unseel.com/economics/information-ratio.html): The information ratio measures an active manager's excess return over a benchmark per unit of tracking error. Above 0.5 is considered goo... - [Interest Rate Parity](https://unseel.com/economics/interest-rate-parity.html): Interest rate parity (IRP) is the no-arbitrage relationship that ties forward exchange rates to spot rates and nominal interest rates: F/... - [Interest Rates](https://unseel.com/economics/interest-rates.html): How the Federal Reserve uses interest rates to control the economy — raising rates cools inflation, cutting rates stimulates growth. - [IS-LM Model](https://unseel.com/economics/is-lm-model.html): The IS-LM model is John Hicks's 1937 graphical formalisation of Keynes's General Theory. The IS curve is the locus of (Y, r) pairs that c... - [J-Curve (Trade)](https://unseel.com/economics/j-curve-trade.html): A currency depreciation initially worsens a country's trade balance before improving it — the graph traces a J. Imports are immediately m... - [Jensen's Alpha](https://unseel.com/economics/jensen-alpha.html): Jensen's alpha is α = R_p − [R_f + β(R_m − R_f)] — the portfolio's return above the CAPM prediction. Jensen 1968. Positive α = manager sk... - [Job-Market Screening](https://unseel.com/economics/screening-job-market.html): Job-market screening: when employers can't observe ability directly, education functions as a separating signal because high-ability work... - [Kaldor-Hicks Efficiency](https://unseel.com/economics/kaldor-hicks.html): Kaldor-Hicks efficiency holds that a policy is efficient if winners' gains exceed losers' losses — that is, if winners could compensate l... - [Kelly Criterion](https://unseel.com/economics/kelly-criterion.html): The Kelly criterion: f* = (bp − q)/b is the bet fraction maximizing long-run log-wealth growth. Used in portfolio sizing, sports betting,... - [Labor Supply Elasticity](https://unseel.com/economics/labor-supply-elasticity.html): Labor-supply elasticity measures the percentage change in hours worked per percentage change in wage. Compensated (substitution-only) val... - [Laffer Curve](https://unseel.com/economics/laffer-curve.html): The Laffer curve plots tax revenue as a function of the tax rate. Revenue is zero at 0% and at 100% — peak revenue sits somewhere in the ... - [Lender of Last Resort](https://unseel.com/economics/lender-of-last-resort.html): The lender of last resort is the central bank's emergency role of lending freely to solvent-but-illiquid banks during financial panics to... - [Leverage Ratio](https://unseel.com/economics/leverage-ratio.html): The Basel III leverage ratio caps a bank's balance-sheet size at roughly 33 times its Tier 1 capital — Tier 1 / total exposure ≥ 3%. A de... - [Lewis Dual-Sector Model](https://unseel.com/economics/lewis-dual-sector.html): The Lewis dual-sector model (Arthur Lewis, 1954; Nobel 1979) explains industrialisation as labor migrating from a subsistence rural secto... - [Life-Cycle Hypothesis](https://unseel.com/economics/life-cycle-hypothesis.html): Modigliani's Life-Cycle Hypothesis: households smooth consumption over a finite lifetime, saving in working years and dissaving in retire... - [Liquidity Coverage Ratio](https://unseel.com/economics/liquidity-coverage-ratio.html): The Basel III Liquidity Coverage Ratio requires banks to hold high-quality liquid assets at least equal to 30 days of stressed net cash o... - [Liquidity Trap](https://unseel.com/economics/liquidity-trap.html): A liquidity trap is when nominal interest rates have fallen so close to zero that conventional monetary policy stops working. Cash and sh... - [Malthusian Trap](https://unseel.com/economics/malthusian-trap.html): The Malthusian trap is the pre-industrial logic where higher productivity raises population, not living standards. Output grows, people g... - [Market Equilibrium](https://unseel.com/economics/market-equilibrium.html): 3D supply and demand diagram. Start with price above equilibrium showing surplus inventory piling up, then price drops. Then show price b... - [Market for Lemons (Akerlof)](https://unseel.com/economics/lemons-akerlof.html): George Akerlof's 1970 paper "The Market for Lemons" is the founding document of asymmetric-information economics. Sellers of used cars kn... - [Marshallian Demand](https://unseel.com/economics/marshallian-demand.html): Marshallian (uncompensated) demand x(p, m) is the bundle that maximizes utility subject to income m at prices p. The standard demand curv... - [Mean-Variance Portfolio](https://unseel.com/economics/mean-variance-portfolio.html): The mean-variance portfolio chooses asset weights w that minimise variance w'Σw at a target expected return w'μ. Harry Markowitz's 1952 p... - [Mechanism Design](https://unseel.com/economics/mechanism-design.html): Mechanism design is reverse game theory: instead of analysing a fixed game, you design the rules so that self-interested players reveal p... - [Mental Accounting](https://unseel.com/economics/mental-accounting.html): Mental accounting is the cognitive habit of sorting money into separate, non-fungible buckets — salary, bonus, gift, gambling winnings — ... - [Menu Costs](https://unseel.com/economics/menu-costs.html): Menu costs are the costs incurred by a firm when it changes its prices, including printing new menus, updating systems, and communicating... - [Mercantilism](https://unseel.com/economics/mercantilism.html): Mercantilism is the early-modern economic doctrine (c. 1500–1750) that national power flows from a positive trade balance in gold and sil... - [Minimum Wage](https://unseel.com/economics/minimum-wage.html): The economics of minimum wage — a price floor on labor, supply and demand effects, unemployment gap, and the debate. - [Minsky Financial Instability](https://unseel.com/economics/minsky-financial-instability.html): Hyman Minsky's financial-instability hypothesis: stability breeds instability. Borrowers shift from hedge to speculative to Ponzi finance... - [Modern Monetary Theory (MMT)](https://unseel.com/economics/modern-monetary-theory.html): Modern Monetary Theory (MMT) is a macroeconomic framework that argues sovereign countries with their own fiat currencies aren't constrain... - [Modigliani-Miller Theorem](https://unseel.com/economics/modigliani-miller.html): Modigliani and Miller (1958) proved that under perfect markets — no taxes, no bankruptcy costs, no information asymmetry — a firm's value... - [Monetarism (Friedman)](https://unseel.com/economics/monetarism.html): Monetarism, associated with Milton Friedman, argues that the money supply is the dominant driver of nominal GDP and inflation in the long... - [Monetary Policy](https://unseel.com/economics/monetary-policy.html): Central banks control money and interest rates via three tools: open market operations (buy/sell bonds), reserve requirements, and discou... - [Money Multiplier](https://unseel.com/economics/money-multiplier.html): The money multiplier is the ratio by which the broad money supply (M1 or M2) expands relative to the monetary base — the cash plus reserv... - [Monopolistic Competition](https://unseel.com/economics/monopolistic-competition.html): Monopolistic competition is a market structure in which many firms sell differentiated products with free entry. Each firm has a downward... - [Monopoly](https://unseel.com/economics/monopoly-market.html): 3D graph showing a monopolist's demand curve, marginal revenue, and marginal cost. Animate the firm choosing quantity where MR=MC, settin... - [Monopsony in Labor Markets](https://unseel.com/economics/monopsony-labor.html): A labor-market monopsony is the mirror image of a monopoly: a single dominant buyer of labor faces an upward-sloping supply curve, hires ... - [Moral Hazard](https://unseel.com/economics/moral-hazard.html): When one party bears less risk, they take more of it. Auto insurance drives reckless; too-big-to-fail banks take wild bets. Solved via de... - [Mortgage-Backed Securities](https://unseel.com/economics/mortgage-backed-securities.html): A mortgage-backed security is a bond whose cash flows come from a pool of mortgage loans. Created by Lewis Ranieri at Salomon Brothers in... - [Mundell-Fleming Model](https://unseel.com/economics/mundell-fleming.html): The Mundell-Fleming model extends IS-LM to a small open economy with international capital mobility. It adds a balance-of-payments curve ... - [NAIRU](https://unseel.com/economics/nairu.html): NAIRU — the Non-Accelerating Inflation Rate of Unemployment — is the unemployment rate at which inflation neither rises nor falls. Below ... - [Nash Equilibrium](https://unseel.com/economics/nash-equilibrium.html): A strategy combination where each player's choice is optimal given the others'. No one can gain by deviating alone. Works for cooperation... - [National Debt](https://unseel.com/economics/national-debt.html): How national debt accumulates — budget deficits, bonds, debt-to-GDP ratio, and the debate over government borrowing. - [Net Present Value (NPV)](https://unseel.com/economics/net-present-value.html): Net Present Value sums the present value of a project's expected cash flows and subtracts the upfront investment. The decision rule is on... - [Network Effects](https://unseel.com/economics/network-effects.html): Network effects occur when the value of a product or service increases as more people use it, creating a positive feedback loop for growt... - [New Keynesian Economics](https://unseel.com/economics/new-keynesian.html): New Keynesian economics rebuilt Keynes on rational expectations and microfoundations. Calvo sticky prices, the forward-looking Phillips c... - [Nudge Theory](https://unseel.com/economics/nudge-theory.html): Nudge theory is a concept in behavioral science that proposes positive reinforcement and indirect suggestions can influence the motives a... - [Okun's Law](https://unseel.com/economics/okuns-law.html): Okun's law is the empirical relationship between unemployment and the output gap. A one-percentage-point rise in unemployment is associat... - [Oligopoly](https://unseel.com/economics/oligopoly.html): A handful of large firms watch each other closely. Cartels coordinate; Cournot firms compete on quantity; Bertrand firms undercut on pric... - [Opportunity Cost](https://unseel.com/economics/opportunity-cost.html): 3D forking path showing two choices. When one path is chosen and lights up, the other fades with a glowing label showing the forgone valu... - [Optimum Currency Area](https://unseel.com/economics/optimum-currency-area.html): Robert Mundell asked in 1961 when a group of regions should share a currency. The answer: when labour can move between them, when shocks ... - [Options Greeks](https://unseel.com/economics/options-greeks.html): The Greeks are the partial derivatives of an option's price with respect to spot, time, volatility, and rate. Delta is the hedge ratio, G... - [Pareto Efficiency](https://unseel.com/economics/pareto-efficiency.html): An allocation is Pareto efficient when no one can be made better off without making someone else worse off. Named for Vilfredo Pareto (19... - [Perfect Competition](https://unseel.com/economics/perfect-competition.html): The cleanest market: many small firms, identical products, free entry. Every firm is a price taker. In long run, economic profits collaps... - [Phillips Curve](https://unseel.com/economics/phillips-curve.html): A short-run tradeoff: higher inflation tends to accompany lower unemployment. 1970s stagflation broke the naive version. Modern view: no ... - [Portfolio Diversification (Markowitz)](https://unseel.com/economics/portfolio-diversification.html): Portfolio diversification combines imperfectly correlated assets so that the portfolio's variance falls below the weighted average of ind... - [Price Discrimination](https://unseel.com/economics/price-discrimination.html): Price discrimination is the practice of charging different buyers different prices for the same good. Pigou's three degrees: first-de... - [Price Elasticity of Demand](https://unseel.com/economics/price-elasticity.html): Price elasticity of demand (PED) measures how sharply quantity demanded responds to a price change. It is the percent change in quantity ... - [Principal-Agent Problem](https://unseel.com/economics/principal-agent.html): The principal-agent problem is the central organizing question of contract theory: how do you pay someone to act in your interest when yo... - [Prisoner's Dilemma](https://unseel.com/economics/game-theory.html): 3D payoff matrix for two players. Animate each player's decision process, highlight the dominant strategy, and show how both end up at Na... - [Producer Surplus](https://unseel.com/economics/producer-surplus.html): Producers' mirror of consumer surplus — what they receive versus minimum they'd accept. Triangular area above the supply curve and below ... - [Production Possibility Frontier](https://unseel.com/economics/production-possibility-frontier.html): The PPF curve shows what an economy can produce given its resources. On the curve: efficient. Inside: wasted capacity. Outside: unattaina... - [Prospect Theory (Kahneman & Tversky)](https://unseel.com/economics/prospect-theory.html): Prospect theory, developed by Daniel Kahneman and Amos Tversky in their 1979 Econometrica paper, describes how people actually evaluate r... - [Public Choice Theory](https://unseel.com/economics/public-choice-theory.html): Public choice theory applies economic methods to political behavior. Voters, politicians, and bureaucrats are utility-maximizers — Buchan... - [Public Goods](https://unseel.com/economics/public-goods.html): Classified by rivalry (does your use limit mine?) and excludability (can we block non-payers?). Public goods fail markets — free riders l... - [Purchasing Power Parity (PPP)](https://unseel.com/economics/purchasing-power-parity.html): Purchasing power parity is the long-run claim that exchange rates should adjust until the same basket of goods costs the same in any curr... - [Put-Call Parity](https://unseel.com/economics/put-call-parity.html): Put-call parity says C − P = S − K·e^(−rT) for European options on a non-dividend stock. A model-free no-arbitrage relation tying call, p... - [Quantitative Easing](https://unseel.com/economics/quantitative-easing.html): Quantitative easing is large-scale central-bank purchases of long-term government bonds and other assets, used when the conventional tool... - [Quantity Theory of Money](https://unseel.com/economics/quantity-theory-money.html): The quantity theory of money links the money supply to the price level through the Fisher equation, M × V = P × Q. M is the money stock; ... - [Ramsey-Cass-Koopmans Model](https://unseel.com/economics/ramsey-model.html): The Ramsey-Cass-Koopmans model: a representative household chooses an optimal consumption path to maximize lifetime utility. Foundation o... - [Rational Expectations](https://unseel.com/economics/rational-expectations.html): Rational expectations is the hypothesis that economic agents form forecasts using all available information and the true structural model... - [Real Business Cycle Theory](https://unseel.com/economics/real-business-cycle.html): Real Business Cycle theory (Kydland-Prescott 1982): business cycles are driven by real technology shocks, not monetary policy. Stochastic... - [Real Interest Rate](https://unseel.com/economics/real-interest-rate.html): The real interest rate is the nominal rate adjusted for inflation: r ≈ i − π. It is what actually determines whether your savings grow or... - [Recession](https://unseel.com/economics/recession.html): What happens when an economy shrinks for two consecutive quarters — GDP falls, businesses contract, unemployment rises, and the cycle eve... - [Rent-Seeking](https://unseel.com/economics/rent-seeking.html): Rent-seeking spends real resources to capture government-created transfers instead of producing value. Tullock 1967 showed total contest ... - [Reputation Effects](https://unseel.com/economics/reputation-effects.html): Reputation effects let cooperation survive in repeated games: defection today costs you tomorrow's payoff. The folk theorem and the thres... - [Resource Curse](https://unseel.com/economics/resource-curse.html): The resource curse — also called the paradox of plenty — is the empirical pattern that countries with abundant natural-resource exports t... - [Returns to Scale](https://unseel.com/economics/returns-to-scale.html): What happens when you double all inputs? Output can grow by less (diseconomies), exactly double (constant returns), or more than double (... - [Revealed Preference (Samuelson)](https://unseel.com/economics/revealed-preference.html): Revealed preference is Paul Samuelson's 1938 reframing of consumer theory. Instead of starting from invisible "utility" and deducing dema... - [Revelation Principle](https://unseel.com/economics/revelation-principle.html): The revelation principle says any equilibrium outcome of any mechanism can be replicated by a direct mechanism in which agents truthfully... - [Ricardian Equivalence](https://unseel.com/economics/ricardian-equivalence.html): Ricardian equivalence is the proposition that the government's choice between paying for spending with taxes today and paying for it with... - [Risk-Return Tradeoff](https://unseel.com/economics/risk-return.html): Plot assets in risk-return space. Combinations with uncorrelated returns reduce risk for any expected return. The upper envelope is the e... - [Roy's Identity](https://unseel.com/economics/roy-identity.html): Roy's identity: x_i(p, m) = −(∂v/∂p_i)/(∂v/∂m). One division recovers Marshallian demand from indirect utility — the Marshallian counterp... - [Second Fundamental Welfare Theorem](https://unseel.com/economics/second-fundamental-welfare-theorem.html): The Second Welfare Theorem: any Pareto-efficient allocation can be supported as a competitive equilibrium given appropriate lump-sum tran... - [Seigniorage](https://unseel.com/economics/seigniorage.html): Seigniorage is the real revenue a government earns by issuing money. Defined as S = ΔM/P — the real value of newly issued money. At low i... - [Shadow Banking](https://unseel.com/economics/shadow-banking.html): Shadow banking is credit intermediation outside the traditional regulated banking system. Money market funds, repo, ABCP, securitisation ... - [Sharpe Ratio](https://unseel.com/economics/sharpe-ratio.html): The Sharpe ratio is (R_p − R_f) / σ_p — excess return per unit of total volatility. Sharpe 1966. Most-used portfolio performance metric. ... - [Shephard's Lemma](https://unseel.com/economics/shephards-lemma.html): Shephard's lemma: h_i(p, u) = ∂e(p, u)/∂p_i. Differentiating the expenditure function in any price returns Hicksian demand directly — no ... - [Signaling Theory (Spence)](https://unseel.com/economics/signaling-theory.html): Signaling theory, formalized by Michael Spence in his 1973 paper "Job Market Signaling," explains how an informed party can credibly reve... - [Skill-Biased Technical Change](https://unseel.com/economics/skill-biased-technical-change.html): Skill-biased technical change is the idea that new technology raises demand for skilled labor faster than for unskilled. It is the leadin... - [Slutsky Equation](https://unseel.com/economics/slutsky-equation.html): The Slutsky equation ∂x/∂p = ∂h/∂p − x·∂x/∂m decomposes a Marshallian price derivative into a Hicksian substitution term and an income-ef... - [Solow Growth Model](https://unseel.com/economics/solow-growth-model.html): The Solow growth model is the workhorse theory of long-run growth. Capital accumulates with diminishing returns; the economy converges to... - [Solow Residual](https://unseel.com/economics/solow-residual.html): The Solow residual is the share of output growth not explained by accumulating capital or labor — total factor productivity. g_A = g_Y − ... - [Sortino Ratio](https://unseel.com/economics/sortino-ratio.html): The Sortino ratio measures risk-adjusted return like the Sharpe ratio, but penalises only downside deviation — the volatility below a min... - [St. Petersburg Paradox](https://unseel.com/economics/st-petersburg-paradox.html): The St. Petersburg paradox: a coin-flip game with infinite expected value that nobody will pay much for. Bernoulli's 1738 resolution via ... - [Stackelberg Leader](https://unseel.com/economics/stackelberg-leader.html): A Stackelberg leader is the first mover in a sequential quantity-competition duopoly: it commits to an output q_L knowing the follower wi... - [Stagflation](https://unseel.com/economics/stagflation.html): Stagflation is an economic condition characterized by slow economic growth, high unemployment, and rising prices (inflation) occurring si... - [Stock Market](https://unseel.com/economics/stock-market.html): How the stock market works — IPOs, supply and demand, candlestick charts, bull and bear markets, and long-term growth. - [Stolper-Samuelson Theorem](https://unseel.com/economics/stolper-samuelson.html): The Stolper-Samuelson theorem (1941) says that in the two-good two-factor Heckscher-Ohlin model, a rise in the relative price of a good r... - [Subgame-Perfect Equilibrium](https://unseel.com/economics/subgame-perfect.html): Subgame-perfect equilibrium is Reinhard Selten's 1965 refinement of Nash equilibrium for sequential games: strategies must form a Nash eq... - [Substitution & Income Effect](https://unseel.com/economics/substitution-income-effect.html): When a price changes, the demand response splits into a substitution effect (a movement along the original indifference curve toward the ... - [Supply & Demand](https://unseel.com/economics/supply-demand.html): 3D visualization of supply and demand curves intersecting at equilibrium. - [Tariffs and Quotas](https://unseel.com/economics/tariff-quota-economics.html): A tariff is a tax on imports; a quota is a quantitative limit. Both raise domestic prices, transfer surplus from consumers to producers, ... - [Taxes](https://unseel.com/economics/taxes.html): How taxes work — progressive brackets, income tax, sales tax, and how tax revenue funds public services. - [Taylor Rule](https://unseel.com/economics/taylor-rule.html): The Taylor rule is a prescriptive formula for central-bank interest-rate setting: i = r* + π + 0.5(π − π*) + 0.5(y − y*). Proposed by Joh... - [Terms of Trade](https://unseel.com/economics/terms-of-trade.html): Terms of trade is the ratio of an economy's export prices to its import prices: ToT = P_x / P_m × 100. A rising ratio means each export u... - [Tit-for-Tat Strategy](https://unseel.com/economics/tit-for-tat.html): Tit-for-tat is a 4-line strategy that won Axelrod's 1980-81 Iterated Prisoner's Dilemma tournaments: cooperate on move one, then mirror t... - [Trade Deficit](https://unseel.com/economics/trade-deficit.html): What a trade deficit means — when imports exceed exports, the balance of trade, tariffs, and currency effects. - [Tragedy of the Commons](https://unseel.com/economics/tragedy-of-commons.html): Individually rational exploitation of shared resources leads to collective ruin. Fisheries, atmosphere, groundwater all succumb without r... - [Treynor Ratio](https://unseel.com/economics/treynor-ratio.html): The Treynor ratio is (R_p − R_f) / β_p — excess return per unit of systematic risk. Treynor 1965. Differs from Sharpe by using β instead ... - [Two-Part Tariff](https://unseel.com/economics/two-part-tariff.html): A two-part tariff charges a fixed access fee F plus a per-unit price p, so total payment is T(q) = F + p·q. With identical consumers the ... - [Types of Unemployment](https://unseel.com/economics/unemployment-types.html): Three kinds. Frictional (between jobs, healthy). Structural (skill mismatch, hard to fix). Cyclical (recession-driven, responds to policy... - [Ultimatum Game](https://unseel.com/economics/ultimatum-game.html): The ultimatum game is a two-stage bargaining experiment: a Proposer offers a split of a fixed sum to a Responder, who can accept (both ke... - [Utility Function](https://unseel.com/economics/utility-function.html): A utility function U(x) assigns a real number to each consumption bundle so that the consumer prefers a to b exactly when U(a) > U(b). Th... - [Value-at-Risk](https://unseel.com/economics/value-at-risk.html): Value-at-Risk (VaR) is a probabilistic bound on portfolio loss: the worst loss not exceeded with confidence α over horizon h. A 1-day 99%... - [Veblen Good](https://unseel.com/economics/veblen-good.html): A Veblen good is a luxury whose demand rises with its price, because the high price itself signals status. The term traces to Thorstein V... - [Velocity of Money](https://unseel.com/economics/velocity-of-money.html): The velocity of money is the number of times the average dollar is spent on final goods and services in a year. Defined by V = PY / M fro... - [Vickrey Auction](https://unseel.com/economics/vickrey-auction.html): A Vickrey auction is a sealed-bid auction in which the highest bidder wins but pays the second-highest bid. The payment rule makes truthf... - [Walras's Law](https://unseel.com/economics/walras-law.html): Walras's Law: across n markets, the value of total excess demand is zero. If n-1 markets clear, the n-th must clear automatically. A cons... - [Wealth Inequality](https://unseel.com/economics/wealth-inequality.html): How wealth is distributed — the Lorenz curve, Gini coefficient, top 1% concentration, and the inequality debate. - [Weighted Average Cost of Capital (WACC)](https://unseel.com/economics/wacc-finance.html): WACC blends the cost of equity and after-tax cost of debt by their market-value weights into the single discount rate that every DCF valu... - [Welfare Economics](https://unseel.com/economics/welfare-economics.html): Pareto efficiency: can't improve one without hurting another. But many Pareto-efficient points are unfair. Choosing among them requires a... - [Yield Curve](https://unseel.com/economics/yield-curve.html): The yield curve plots interest rates of bonds with the same credit quality — typically U.S. Treasuries — across maturities from one month... - [Zero Lower Bound](https://unseel.com/economics/zero-lower-bound.html): The zero lower bound (ZLB) is the floor at (or near) zero below which conventional monetary policy can no longer effectively cut nominal ... ## Engineering Design, systems, and applied science. 358 concepts. - [Engineering index](https://unseel.com/engineering.html): All engineering concepts - [3D Printing (FDM)](https://unseel.com/engineering/3d-printing-fdm.html): A heated nozzle deposits molten plastic in 0.2mm layers, building up an object from the bottom. Hundreds of layers later, the printed par... - [555 Timer](https://unseel.com/engineering/555-timer.html): The 555 timer is an 8-pin analog IC that charges and discharges an external RC network between 1/3 and 2/3 Vcc to make precise pulses and... - [Ablative Heat Shield](https://unseel.com/engineering/ablative-heat-shield.html): An ablative heat shield protects a reentry vehicle by burning away on purpose: the surface chars, pyrolyzes, and sheds, carrying heat off... - [Abrasive Jet Machining](https://unseel.com/engineering/abrasive-jet-machining.html): Abrasive jet machining removes material with high-velocity abrasive particles carried by a gas or water stream. Abrasive waterjet pressur... - [Ackermann Steering Geometry](https://unseel.com/engineering/ackermann-steering.html): Ackermann steering geometry steers inner and outer front wheels at different angles so each rolls without scrub around its own concentric... - [Acme Lead Screw](https://unseel.com/engineering/lead-screw-acme.html): An Acme lead screw is a trapezoidal-thread power screw that turns rotation into linear motion and holds load with no power because its lo... - [Acoustic Helmholtz Resonator](https://unseel.com/engineering/acoustic-helmholtz-resonator.html): A Helmholtz resonator is a single-frequency acoustic oscillator: the air mass in the neck of a cavity acts as a moving slug, the compress... - [ADC Conversion](https://unseel.com/engineering/adc-conversion.html): Sampling and quantization turn a continuous analog signal into a stream of binary numbers. CD audio is 16 bits at 44.1 kHz — every analog... - [Aeroelastic Flutter](https://unseel.com/engineering/aeroelastic-flutter.html): Aeroelastic flutter is a self-feeding oscillation where airflow pumps energy into a structure's coupled bending and torsion modes, growin... - [Afterburner Thrust](https://unseel.com/engineering/afterburner-thrust.html): An afterburner (reheat) injects fuel into the oxygen-rich turbine exhaust and ignites it, boosting thrust by 40–70 percent at 3–5× the fu... - [Aircraft Control Surfaces](https://unseel.com/engineering/control-surfaces.html): Aircraft control surfaces are hinged trailing-edge panels that change the effective camber of a wing or tail section to generate aerodyna... - [Airfoil Lift](https://unseel.com/engineering/airfoil-lift.html): Curved upper surface speeds airflow, lowering pressure above the wing; flatter bottom keeps pressure higher. The pressure imbalance is li... - [Annealing Heat Treatment](https://unseel.com/engineering/annealing-heat-treatment.html): Annealing heats metal to relieve residual stress, soften work-hardened material, and refine grain. Three stages — recovery, recrystalliza... - [Arc Welding](https://unseel.com/engineering/arc-welding.html): Arc welding fuses metal by striking a 6,000°C electric arc between an electrode and the workpiece, melting a shielding-gas-protected weld... - [Arch Bridge](https://unseel.com/engineering/arch-bridge.html): Wedge-shaped voussoir blocks lock together against a keystone, channeling vertical loads into compression that flows down the curve and f... - [Arch Dam](https://unseel.com/engineering/arch-dam.html): An arch dam transfers reservoir pressure horizontally into rock abutments through compressive hoop action — the same trick a Roman arch u... - [Area Moment of Inertia](https://unseel.com/engineering/moment-of-inertia.html): The area moment of inertia I = ∫y²dA quantifies a cross-section's resistance to bending. Bending stiffness scales as EI; deflection scale... - [Area Rule](https://unseel.com/engineering/area-rule.html): The area rule says transonic wave drag depends on how an aircraft's total cross-sectional area changes along its length — so pinching the... - [Aspect Ratio & Induced Drag](https://unseel.com/engineering/aspect-ratio-induced-drag.html): Aspect ratio is wingspan² over wing area, and a higher value cuts induced drag — the lift-tax paid as energy spilled into wingtip vortice... - [Auxetic Metamaterials](https://unseel.com/engineering/auxetic-metamaterial.html): Auxetic metamaterials have a negative Poisson's ratio — stretch them and they get fatter, not thinner. Re-entrant, chiral, and rotating-u... - [Avalanche Photodiode (APD)](https://unseel.com/engineering/avalanche-photodiode.html): An avalanche photodiode is a reverse-biased PIN photodiode operated near breakdown, where one photoelectron triggers impact ionisation ca... - [Ball Bearing](https://unseel.com/engineering/ball-bearing.html): Balls between an inner and outer race turn sliding friction into rolling friction — cutting energy loss by 99 percent. Everything from bi... - [Ball Screw](https://unseel.com/engineering/ball-screw.html): A ball screw is a linear actuator that rolls hardened balls between a screw shaft and a nut, turning rotation into precise linear motion ... - [Beam Bending (Euler-Bernoulli)](https://unseel.com/engineering/beam-bending.html): Euler-Bernoulli beam theory predicts how a slender beam deflects and develops bending stress when loaded transversely. The governing equa... - [Belleville Disc Spring](https://unseel.com/engineering/belleville-washer.html): A Belleville disc spring is a shallow cone-shaped washer that flattens under axial load, storing energy in a tiny package. Stack them in ... - [Belt Drive](https://unseel.com/engineering/belt-drive.html): Two pulleys connected by a tensioned loop transmit power smoothly between parallel shafts. Diameter ratios set the speed reduction; V-bel... - [Bernoulli's Principle](https://unseel.com/engineering/bernoulli-principle.html): Bernoulli's equation p + ½ρv² + ρgh = constant relates pressure, velocity, and height along a streamline of an inviscid incompressible fl... - [Betz Limit](https://unseel.com/engineering/betz-limit.html): No wind turbine can capture more than 59.3% of the wind's kinetic energy — slow the air too much and it piles up, diverting the rest arou... - [Bevel Gear](https://unseel.com/engineering/bevel-gear.html): A bevel gear has teeth on a conical surface, transmitting rotation between intersecting shafts — usually at 90°. Straight, spiral, zerol,... - [Bode Plot](https://unseel.com/engineering/bode-plot.html): A Bode plot graphs a system's gain in decibels and phase in degrees against log-frequency, letting you read gain margin and phase margin ... - [Bolt Preload](https://unseel.com/engineering/bolt-preload.html): Bolt preload is the tension locked into a bolt when it is tightened, clamping a joint together. It controls fatigue life, loosening and s... - [Boost Converter](https://unseel.com/engineering/boost-converter.html): A boost converter is a switching DC-DC converter that produces an output voltage higher than its input. An inductor stores energy when a ... - [Boundary-Layer Separation](https://unseel.com/engineering/boundary-layer-separation.html): Boundary-layer separation is the detachment of viscous near-wall flow from a solid surface when an adverse pressure gradient overcomes th... - [Brayton Cycle](https://unseel.com/engineering/brayton-cycle.html): The Brayton cycle is the four-step open-air thermodynamic cycle that powers every jet engine and roughly a third of the world's electrici... - [Brushless DC Motor (BLDC)](https://unseel.com/engineering/brushless-dc-motor.html): A BLDC motor is a permanent-magnet AC motor wrapped in a marketing name. The controller takes DC in and synthesises a three-phase rotatin... - [Buck Converter](https://unseel.com/engineering/buck-converter.html): A buck converter steps a higher DC voltage down to a lower one by chopping it at hundreds of kilohertz and letting an inductor and capaci... - [Buck-Boost Converter](https://unseel.com/engineering/buck-boost-converter.html): A buck-boost converter is a switching DC-DC topology that can produce an output voltage higher or lower than the input — and of opposite ... - [Cable Catenary](https://unseel.com/engineering/cable-catenary.html): A catenary is the curve a uniform flexible chain takes under its own weight in gravity: y = a cosh(x/a), where the shape parameter a = H/... - [Cable-Stayed Bridge](https://unseel.com/engineering/cable-stayed-bridge.html): A cable-stayed bridge supports its deck with straight cables anchored directly to one or more pylons, without the draped main cable of a ... - [Cam & Follower](https://unseel.com/engineering/cam-follower.html): A shaped cam disc rotates and a follower rod rides over its profile, rising and falling on cue. The cam's geometry is the choreographer o... - [Cantilever Beam](https://unseel.com/engineering/cantilever-beam.html): 3D beam fixed at one end with a load applied at the free end. Animate the beam deflecting, show stress distribution with color gradient f... - [Cantilever Retaining Wall](https://unseel.com/engineering/cantilever-retaining-wall.html): The L- or T-shaped reinforced concrete cantilever retaining wall: stem cantilevers from the footing, soil over the heel provides stabilit... - [Capacitor Charging Curve](https://unseel.com/engineering/capacitor-charging.html): A capacitor charges through a resistor along an exponential curve V(t) = V₀(1−e^(-t/τ)), reaching 63.2% of supply voltage in one time con... - [Capstan Equation](https://unseel.com/engineering/capstan-equation.html): The capstan equation says holding force grows exponentially with wrap angle: T_load = T_hold·e^(μβ). A few turns of rope around a post le... - [Carnot Cycle](https://unseel.com/engineering/carnot-cycle.html): The Carnot cycle is the most efficient heat engine cycle physically possible between two temperatures. Its efficiency η = 1 − T_c/T_h set... - [Case Hardening](https://unseel.com/engineering/case-hardening.html): Case hardening diffuses carbon or nitrogen into a steel surface, then quenches it, giving a 60+ HRC wear-resistant case 0.5–2 mm deep ove... - [Cavitation](https://unseel.com/engineering/cavitation.html): Cavitation is the formation and violent collapse of vapor bubbles when a liquid's local pressure drops below its vapor pressure. The coll... - [Centrifugal Clutch](https://unseel.com/engineering/centrifugal-clutch.html): A centrifugal clutch automatically engages the driveshaft when input speed crosses a threshold RPM. Spring-loaded shoes fly outward again... - [Centrifugal Governor](https://unseel.com/engineering/centrifugal-governor.html): A centrifugal governor regulates engine speed by translating angular velocity into a linkage position. James Watt fitted one to a steam e... - [Centrifugal Pump](https://unseel.com/engineering/centrifugal-pump.html): Fluid enters axially at the spinning impeller's center; curved vanes fling it outward by centrifugal force. The spiral volute casing chan... - [Chain Drive](https://unseel.com/engineering/chain-drive.html): A chain drive transfers rotation between two sprockets via a roller chain. No slip, ~99% efficient. A 50-tooth front and 12-tooth rear sp... - [Choked Flow](https://unseel.com/engineering/choked-flow-nozzle.html): Choked flow is the limit where gas hits Mach 1 at a nozzle throat and mass flow stops rising even as you keep dropping the downstream pre... - [Circuit Breaker](https://unseel.com/engineering/circuit-breaker.html): A circuit breaker is an automatic switch that trips open when current exceeds a safe limit — a bimetal strip handles slow overloads and a... - [Class 1 Lever](https://unseel.com/engineering/lever-class-1.html): A class 1 lever places the fulcrum between effort and load. Mechanical advantage equals effort arm length divided by load arm length — ty... - [Class-D Amplifier](https://unseel.com/engineering/class-d-amplifier.html): A Class-D amplifier encodes audio as a high-frequency PWM stream, switches the output transistors fully on or off, then an LC filter reco... - [CMOS Logic Gates](https://unseel.com/engineering/logic-gates-cmos.html): CMOS pairs a PMOS pull-up with an NMOS pull-down so one transistor is always off and static current is essentially zero. The inverter, NA... - [CNC Milling](https://unseel.com/engineering/cnc-milling.html): A spinning end mill carves a 3D shape from a solid block, following a programmed toolpath. Tolerances under 0.01mm. From phone cases to s... - [Cofferdam Construction](https://unseel.com/engineering/cofferdam-construction.html): A cofferdam is a watertight enclosure driven into the riverbed so engineers can dewater inside and build a foundation in the dry. Pile pe... - [Cold Rolling vs Hot Rolling](https://unseel.com/engineering/cold-rolling-vs-hot.html): Rolling reduces thickness by squeezing metal between rotating rolls. Hot rolling above the recrystallization temperature (~1100 °C for st... - [Column Buckling](https://unseel.com/engineering/buckling-column.html): A slender column under axial compression doesn't fail by squashing — it suddenly bows sideways at a load far below its material crush str... - [Combined-Cycle Power Plant](https://unseel.com/engineering/combined-cycle-power.html): A combined-cycle power plant stacks a gas turbine (Brayton) on a steam turbine (Rankine), reusing turbine exhaust heat to reach ~60% ther... - [Common-Mode Choke](https://unseel.com/engineering/common-mode-choke.html): A common-mode choke is a toroid wound with two coils in opposite sense — differential current sees almost no inductance while common-mode... - [Comparator Circuit](https://unseel.com/engineering/comparator-circuit.html): A comparator outputs HIGH or LOW depending on which of two inputs is larger. Built from an op-amp run open-loop or a dedicated comparator... - [Composite Laminate](https://unseel.com/engineering/composite-laminate.html): Stacks of fiber-reinforced plies at different angles let engineers tune strength in every direction independently. The quasi-isotropic [0... - [Compressor Stall & Surge](https://unseel.com/engineering/compressor-stall-surge.html): Compressor stall and surge are two related aerodynamic instabilities in axial and centrifugal compressors. Rotating stall is a localized ... - [Concentrated Solar Power](https://unseel.com/engineering/concentrated-solar-power.html): Concentrated solar power (CSP) uses fields of sun-tracking mirrors to focus sunlight onto a receiver, generating heat at 400 to 1000°C th... - [Constant-Velocity Joint](https://unseel.com/engineering/cv-joint.html): A constant-velocity (CV) joint transmits rotation between two shafts at an angle while keeping output speed identical to input speed at a... - [Continuously Variable Transmission](https://unseel.com/engineering/cvt-transmission.html): A continuously variable transmission uses two variable-width pulleys and a belt to deliver a smooth, stepless range of gear ratios — no f... - [Coriolis Flow Meter](https://unseel.com/engineering/coriolis-flow-meter.html): A Coriolis flow meter measures mass flow directly: fluid moving through a vibrating tube generates a Coriolis force that twists the tube,... - [Corona Discharge](https://unseel.com/engineering/corona-discharge.html): Corona discharge is the partial ionization of air around a high-voltage conductor when the local surface field exceeds about 30 kV/cm, pr... - [Counterflow Cooling Tower](https://unseel.com/engineering/cooling-tower-counterflow.html): A counterflow cooling tower evaporates a small fraction of recirculated water to reject heat from a power-plant condenser, HVAC chiller, ... - [Crank-Slider](https://unseel.com/engineering/crank-slider.html): A crank rotates uniformly; a connecting rod links it to a sliding piston. The piston pauses at top and bottom dead center, fastest at mid... - [Crankshaft Balancing](https://unseel.com/engineering/crankshaft-balancing.html): Crankshaft balancing eliminates the primary (1× crank speed) and secondary (2× crank speed) inertia forces produced by reciprocating pist... - [Creep](https://unseel.com/engineering/creep-deformation.html): Creep is the slow, permanent deformation of a material held under constant stress at high temperature — the time-dependent strain that st... - [Crystal Oscillator](https://unseel.com/engineering/crystal-oscillator.html): A crystal oscillator is a quartz resonator in a feedback loop that locks a circuit to a sharp, stable frequency, holding tens of ppm accu... - [Ćuk Converter](https://unseel.com/engineering/cuk-converter.html): The Ćuk converter is an inverting DC-DC topology that stores energy in a capacitor between two inductors. Continuous input and output cur... - [Current Mirror](https://unseel.com/engineering/current-mirror.html): A current mirror is a two-transistor circuit that copies a reference current to an output branch. Learn the I_OUT = I_REF principle, mism... - [Cycloidal Drive](https://unseel.com/engineering/cycloidal-drive.html): A cycloidal drive is a high-ratio speed reducer in which an eccentric cam wobbles a lobed cycloidal disc against a ring of pins, advancin... - [Deep Drawing](https://unseel.com/engineering/deep-drawing.html): Deep drawing is a sheet-metal process where a punch forces a flat blank into a die to form a seamless cup. Learn the draw ratio, blank-ho... - [Delta Wing & Vortex Lift](https://unseel.com/engineering/delta-wing-vortex.html): A delta wing is a triangular planform with leading-edge sweep typically between 50° and 75°. Above moderate angles of attack, flow separa... - [Denavit–Hartenberg Parameters](https://unseel.com/engineering/denavit-hartenberg.html): Denavit–Hartenberg parameters are four numbers — link length a, twist α, offset d, joint angle θ — that define each joint-to-joint transf... - [Die Casting](https://unseel.com/engineering/die-casting.html): Die casting forces molten metal at hundreds of bar into a steel mold, freezing intricate net-shape parts in seconds. The process behind a... - [Differential Gear](https://unseel.com/engineering/differential-gear.html): A differential gear lets two driven wheels rotate at different speeds while sharing torque from a single driveshaft. The classic bevel-ge... - [Differential Pair](https://unseel.com/engineering/differential-pair.html): A differential pair is two matched transistors sharing one tail current that steers between them, amplifying the difference of two inputs... - [Differential-Drive Robot](https://unseel.com/engineering/differential-drive.html): A differential-drive robot steers using only two independently driven wheels: equal speeds go straight, a speed difference curves the pat... - [Dilution Refrigerator](https://unseel.com/engineering/dilution-refrigerator.html): A dilution refrigerator cools to 5–10 millikelvin using He-3/He-4 mixing — colder than interstellar space. - [Diode Rectification](https://unseel.com/engineering/diode-rectification.html): A diode conducts in one direction and blocks the other. Half-wave rectification keeps only the positive lobes of AC; a four-diode bridge ... - [Ducted Fan](https://unseel.com/engineering/ducted-fan.html): A ducted fan is a propeller or fan enclosed in a cylindrical shroud. Compared to an open propeller of equal diameter and power, the shrou... - [Earth Pressure (Active & Passive)](https://unseel.com/engineering/earth-pressure-coefficient.html): Earth pressure is the lateral force soil exerts on a retaining wall. Active pressure (low Ka) builds as the wall yields; passive (high Kp... - [Eddy-Current Brake](https://unseel.com/engineering/eddy-current-brake.html): An eddy-current brake slows a moving conductor with no contact: a magnetic field induces swirling currents whose own field opposes the mo... - [Electrochemical Machining (ECM)](https://unseel.com/engineering/electrochemical-machining.html): Electrochemical machining (ECM) dissolves metal atom by atom — reverse electroplating against a shaped cathode tool, with no cutting forc... - [Electromechanical Relay](https://unseel.com/engineering/relay-electromechanical.html): An electromechanical relay is a switch where a small coil current makes an electromagnet that pulls an armature to close power contacts, ... - [End Effectors & Grippers](https://unseel.com/engineering/end-effector-gripper.html): An end effector is the tool at the end of a robot arm; a gripper is the subset that grasps objects. Choices range from rigid parallel-jaw... - [Epicyclic Gearing](https://unseel.com/engineering/epicyclic-gearing.html): An epicyclic gear train places planet pinions between a central sun and a surrounding internal-tooth ring. Holding any one of the three c... - [Escapement Mechanism](https://unseel.com/engineering/escapement-mechanism.html): An escape wheel pushes against a pallet fork, which is rocked by a swinging pendulum. Each swing releases exactly one tooth — converting ... - [Fatigue Failure](https://unseel.com/engineering/fatigue-failure.html): A small flaw grows microns per cycle under repeated loading. After thousands of cycles, the crack reaches critical length and the part su... - [Feedback Loop](https://unseel.com/engineering/feedback-loop.html): 3D block diagram of a closed-loop control system. Animate a signal flowing through controller, plant, and sensor blocks. Show how negativ... - [Ferrofluid Seal](https://unseel.com/engineering/ferrofluid-seal.html): A ferrofluid seal traps a magnetic oil between annular pole pieces to form rotating liquid O-rings — sealing 1-3 bar per stage with zero ... - [Fiber Bragg Grating Sensor](https://unseel.com/engineering/fiber-bragg-grating.html): A fiber Bragg grating is a periodic refractive-index pattern written into an optical fiber core that reflects one wavelength — the Bragg ... - [Fin Heat Sink](https://unseel.com/engineering/fin-heat-sink.html): A fin heat sink is a finned metal block that multiplies surface area to dump heat into air by convection. See fin efficiency, the fin equ... - [FIR Digital Filter](https://unseel.com/engineering/fir-filter.html): A FIR (finite impulse response) digital filter computes each output as a weighted sum of the most recent input samples through a tapped d... - [Flip-Flop](https://unseel.com/engineering/flip-flop.html): A D flip-flop samples its data input on the rising edge of the clock, then holds that bit until the next rising edge. Chain millions of t... - [Fluid Coupling](https://unseel.com/engineering/fluid-coupling.html): A fluid coupling transmits torque between two bladed wheels through circulating oil, with no mechanical contact. It is the soft-start, vi... - [Fluid Pressure](https://unseel.com/engineering/fluid-pressure.html): 3D container of fluid with pressure arrows growing larger with depth. Show Pascal's principle by pressing a piston on one side and seeing... - [Flyback Converter](https://unseel.com/engineering/flyback-converter.html): The flyback converter is an isolated DC-DC topology that uses a gapped transformer as an energy-storage inductor. Primary charges during ... - [Flying Buttress](https://unseel.com/engineering/flying-buttress.html): A flying buttress is a half-arch of stone that catches the lateral thrust from a vaulted Gothic roof and transfers it across an open span... - [Flywheel Energy Storage](https://unseel.com/engineering/flywheel-energy-storage.html): A flywheel energy storage system stores energy as the rotational kinetic energy of a spinning rotor, E = ½Iω². Carbon-fiber rotors levita... - [Force–Torque Sensor](https://unseel.com/engineering/force-torque-sensor.html): A force–torque sensor is a six-axis transducer that measures three forces and three torques at a robot's wrist, resolving microscopic str... - [Forging Press](https://unseel.com/engineering/forging-press.html): A forging press squeezes hot metal between dies under enormous load — tens of thousands of tonnes — to align grain flow, eliminate porosi... - [Forward Converter](https://unseel.com/engineering/forward-converter.html): The forward converter is an isolated DC-DC topology where the transformer transfers energy in real time — no air gap, no stored energy. A... - [Forward Kinematics (DH Parameters)](https://unseel.com/engineering/forward-kinematics.html): Forward kinematics computes the position and orientation of a robot's end effector from joint angles. The Denavit–Hartenberg convention t... - [Four-Bar Linkage](https://unseel.com/engineering/four-bar-linkage.html): A four-bar linkage is four rigid links pinned in a loop with one degree of freedom, turning input rotation into a programmed output motio... - [Four-Stroke Engine](https://unseel.com/engineering/four-stroke-engine.html): 3D piston and cylinder showing the four strokes of an internal combustion engine. Animate intake valve opening, piston compressing fuel-a... - [Fracture Toughness](https://unseel.com/engineering/fracture-toughness.html): Fracture toughness (K_IC) is the resistance of a material to crack growth — the stress intensity at a crack tip that triggers sudden, cat... - [Friction Stir Welding](https://unseel.com/engineering/friction-stir-welding.html): Friction stir welding joins metal in the solid state: a spinning shouldered tool plasticizes aluminum and stirs it into a seam below its ... - [Full Adder](https://unseel.com/engineering/adder-circuit.html): Two XOR gates compute the sum bit; AND/OR gates compute the carry. Chain eight together and you can add two 8-bit numbers — every CPU's a... - [Full-Flow Staged Combustion](https://unseel.com/engineering/full-flow-staged-combustion.html): A full-flow staged combustion (FFSC) engine routes 100% of both propellants through preburners before the main chamber. Used in SpaceX Ra... - [Galvanic Corrosion](https://unseel.com/engineering/galvanic-corrosion.html): When two different metals touch in the presence of an electrolyte they form a battery, and the less noble metal corrodes far faster than ... - [Galvanic Isolation](https://unseel.com/engineering/galvanic-isolation.html): Galvanic isolation is electrical separation between two circuits with no DC path. Signal or power crosses the barrier via a magnetic, opt... - [Gear Pump](https://unseel.com/engineering/gear-pump.html): A gear pump is a positive-displacement pump where two meshing gears trap fluid between teeth and casing, carry it around, and squeeze it ... - [Gear Ratio Calculation](https://unseel.com/engineering/gear-ratio-calculation.html): Gear ratio = output teeth / input teeth. A 24-tooth pinion driving a 96-tooth gear gives 4:1. Speed divides by 4, torque multiplies by 4.... - [Gear Train](https://unseel.com/engineering/gear-train.html): 3D meshing gears of different sizes rotating together. Show how a small driving gear turns a large driven gear slower but with more torqu... - [Geneva Drive](https://unseel.com/engineering/geneva-drive.html): A Geneva drive converts continuous rotation into intermittent stepped motion. A driving pin enters a slotted wheel for one quarter of eac... - [Geodesic Dome](https://unseel.com/engineering/geodesic-dome.html): A geodesic dome is a near-spherical shell built from triangles projected onto a sphere, so loads travel as pure tension and compression t... - [GFCI (Ground-Fault Interrupter)](https://unseel.com/engineering/gfci.html): A GFCI continuously compares the current flowing out on the hot wire against the current returning on neutral. The instant they differ by... - [Gimbal Thrust Vectoring](https://unseel.com/engineering/gimbal-thrust-vector.html): A gimbal lets the main engine pivot in 2 axes (±5–10°) to steer the rocket. Saturn V's F-1s gimballed ±5.16°, Falcon 9's outer Merlins ±5... - [GPU Ray Tracing](https://unseel.com/engineering/gpu-ray-tracing.html): GPU ray tracing simulates light by shooting rays from the camera, finding scene-geometry intersections, and bouncing toward lights. - [Grid-Tie Inverter](https://unseel.com/engineering/grid-tie-inverter.html): A grid-tie inverter converts solar DC into AC that is phase-locked to the utility grid, feeding current in sync to within a degree. How P... - [Ground Effect](https://unseel.com/engineering/ground-effect-aero.html): Ground effect is the rise in lift and drop in induced drag a wing gains within about one chord of the ground, as trapped air raises press... - [Gyroscopic Precession](https://unseel.com/engineering/gyroscopic-precession.html): Gyroscopic precession is what makes a spinning wheel respond to a push 90° away from where you applied it. The torque-cross-angular-momen... - [H-Bridge](https://unseel.com/engineering/h-bridge.html): Four switches around a DC motor in an H-pattern let you spin it forward, backward, or brake. Combine with PWM and you get full control of... - [Hall-Effect Sensor](https://unseel.com/engineering/hall-effect-sensor.html): A Hall-effect sensor turns a magnetic field into a tiny transverse voltage: current through a thin plate, a perpendicular field, and the ... - [Hall-Petch Strengthening](https://unseel.com/engineering/hall-petch.html): Hall-Petch strengthening says a metal's yield strength rises as grain size shrinks, following σ_y = σ₀ + k·d^−½. Smaller grains pack in m... - [Harmonic Drive (Strain Wave Reducer)](https://unseel.com/engineering/harmonic-drive.html): A harmonic drive uses an elliptical wave generator to flex a thin-walled flexspline into a rigid circular spline with two more teeth, pro... - [Heat Pipe](https://unseel.com/engineering/heat-pipe.html): A heat pipe is a sealed two-phase device that moves heat by boiling a working fluid at one end and condensing it at the other, returning ... - [Heat Transfer](https://unseel.com/engineering/heat-transfer.html): 3D visualization of three heat transfer methods side by side. Conduction through a metal bar with color gradient, convection currents ris... - [Helical Spring](https://unseel.com/engineering/helical-spring.html): A helical spring is a coiled wire that stores energy by twisting the wire as the coil compresses or extends. Spring rate equals Gd⁴/(8D³n... - [Helicopter Autorotation](https://unseel.com/engineering/autorotation.html): Helicopter autorotation lets a pilot land safely after engine failure by letting upward airflow through the descending rotor drive the bl... - [Helicopter Rotor (Collective & Cyclic)](https://unseel.com/engineering/helicopter-rotor.html): A helicopter's main rotor is a set of rotating airfoils whose pitch is controlled by two stick inputs that do entirely different jobs. Co... - [Hooke Joint Velocity Fluctuation](https://unseel.com/engineering/hooke-joint-velocity-fluctuation.html): A Hooke (U-joint) transmits torque through an angle but introduces a sinusoidal velocity error: output speed oscillates at twice shaft fr... - [HVDC Converter](https://unseel.com/engineering/hvdc-converter.html): A high-voltage direct-current (HVDC) converter station turns AC into ±800 kV DC for long-distance transmission. - [Hydraulic Cylinder](https://unseel.com/engineering/hydraulic-cylinder.html): A hydraulic cylinder converts fluid pressure into linear force: F = p·A. Bore area, pressure, and rod diameter set the push and pull forc... - [Hydraulic Jump](https://unseel.com/engineering/hydraulic-jump.html): A hydraulic jump is the abrupt transition where fast, shallow supercritical flow (Froude number above 1) suddenly thickens into slow, dee... - [Hydraulic Press](https://unseel.com/engineering/hydraulic-press.html): A hydraulic press multiplies force through an incompressible fluid: pressure equals pressure across pistons, so a 1 cm² pump piston drivi... - [Hydroforming](https://unseel.com/engineering/hydroforming.html): Hydroforming uses high-pressure fluid — typically 100 to 400 MPa of water-oil emulsion — to press a tube or sheet against a die, forming ... - [Hydrogen Embrittlement](https://unseel.com/engineering/hydrogen-embrittlement.html): Hydrogen embrittlement is the sudden, brittle cracking of high-strength steel after atomic hydrogen diffuses into the lattice and concent... - [Hypersonic Aerothermodynamics](https://unseel.com/engineering/hypersonic-aerothermo.html): At Mach 5+, stagnation temperatures exceed 1500 K. Reentry from orbit at Mach 25 hits ~11,000 K. The hot boundary layer dissociates air, ... - [IGBT Power Switching](https://unseel.com/engineering/igbt-power-switching.html): The Insulated-Gate Bipolar Transistor combines a MOSFET gate with bipolar collector-emitter conduction. V_sat 1.5-2 V replaces R_DS(on); ... - [Impedance Control](https://unseel.com/engineering/impedance-control-robotics.html): Impedance control programs a robot's end-effector to behave as a target dynamic system — a virtual mass, damper, and spring — instead of ... - [Impedance Matching](https://unseel.com/engineering/impedance-matching.html): Impedance matching tunes source and load impedance so power transfers fully and reflections vanish. The reflection coefficient Γ = (Z_L −... - [Induction Motor](https://unseel.com/engineering/induction-motor.html): The induction motor is the workhorse of industry: roughly half of all electricity worldwide flows into one. A three-phase stator winding ... - [Inductor Energy Storage](https://unseel.com/engineering/inductor-energy.html): An inductor stores energy in its magnetic field, W = ½LI². Push current through it and the field builds; try to interrupt that current an... - [Injection Molding](https://unseel.com/engineering/injection-molding.html): Plastic pellets melt in a heated barrel; a screw rams them into a closed mold; the part cools, the mold opens, ejector pins push out a fi... - [Instrumentation Amplifier](https://unseel.com/engineering/instrumentation-amplifier.html): An instrumentation amplifier is a precision 3-op-amp circuit with very high common-mode rejection (~120 dB) and infinite input impedance.... - [Inverse Kinematics](https://unseel.com/engineering/inverse-kinematics.html): Forward kinematics is easy: angles to position. Inverse is the hard problem: given a desired position, what angles? Trigonometry solves a... - [Inverted Pendulum Balancing](https://unseel.com/engineering/inverted-pendulum-balance.html): An inverted pendulum is an unstable pole balanced upright by a controller that drives a cart or wheels beneath the falling mass. Feedback... - [Iron–Carbon Phase Diagram](https://unseel.com/engineering/iron-carbon-diagram.html): The iron-carbon phase diagram is the temperature-vs-carbon map that sets steel microstructure — austenite, ferrite, cementite and pearlit... - [Jansen's Linkage](https://unseel.com/engineering/jansen-linkage.html): Jansen's linkage is an eleven-bar, single-degree-of-freedom mechanism that converts a single rotating crank into a smooth, flat-bottomed ... - [Jet Engine Stages](https://unseel.com/engineering/jet-engine-stages.html): Intake fan, compressor stages, combustor, turbine, exhaust. Air is squeezed 30 times, heated past 1500°C, then blasted through the turbin... - [Jet Pump (Eductor)](https://unseel.com/engineering/jet-pump.html): A jet pump (eductor) uses a high-speed motive jet through a converging nozzle to drag surrounding fluid along by momentum exchange, pumpi... - [Kalman Filter](https://unseel.com/engineering/kalman-filter-control.html): The Kalman filter is the recursive optimal state estimator for a linear system with Gaussian process and measurement noise. It alternates... - [Kaplan Turbine](https://unseel.com/engineering/kaplan-turbine.html): A Kaplan turbine is an axial-flow reaction turbine whose propeller blades and inlet guide vanes both pivot, holding 90%+ efficiency acros... - [Laminar vs Turbulent Flow](https://unseel.com/engineering/laminar-vs-turbulent.html): Laminar flow moves in orderly parallel streamlines, with mixing only by molecular diffusion. Turbulent flow churns with three-dimensional... - [Laser Cutting](https://unseel.com/engineering/laser-cutting.html): Laser cutting is a thermal process that melts or vaporizes a narrow kerf through metal with a focused beam, while a coaxial assist gas je... - [Lathe Turning](https://unseel.com/engineering/lathe-turning.html): The workpiece rotates while a fixed cutting tool shaves material away. Move the tool parallel and you reduce diameter; perpendicular and ... - [LDO Voltage Regulator](https://unseel.com/engineering/ldo-regulator.html): An LDO voltage regulator is a linear regulator that holds a clean output with very little input-to-output headroom, using a pass transist... - [Leaf Spring](https://unseel.com/engineering/leaf-spring.html): A leaf spring is a stack of curved beams clamped at the center that flatten under load, sharing bending stress across the leaves. Multi-l... - [LiDAR SLAM](https://unseel.com/engineering/lidar-slam.html): LiDAR SLAM (Simultaneous Localization and Mapping) lets a robot or vehicle build a map of an unknown environment while continuously track... - [Limited-Slip Differential](https://unseel.com/engineering/limited-slip-differential.html): A limited-slip differential sends torque to the wheel that still has grip instead of letting it all spin away on ice. Clutch packs, Torse... - [Lithium Dendrite Failure](https://unseel.com/engineering/lithium-dendrite-failure.html): Lithium dendrite failure occurs when metallic lithium plates onto the anode and grows tree-like protrusions that short the cell. - [Litz Wire](https://unseel.com/engineering/litz-wire.html): Litz wire is a conductor built from many thin, individually-insulated strands twisted and transposed so each strand spends equal time nea... - [LLC Resonant Converter](https://unseel.com/engineering/llc-resonant-converter.html): The LLC resonant converter uses an inductor-inductor-capacitor tank between a half-bridge and a transformer. Soft switching gives 96–97% ... - [Lost-Wax (Investment) Casting](https://unseel.com/engineering/lost-wax-casting.html): Lost-wax casting builds a ceramic shell around a wax pattern, melts the wax out, and pours molten metal into the empty cavity. The 6,000-... - [LQR Control](https://unseel.com/engineering/lqr-control.html): The Linear-Quadratic Regulator is the optimal state-feedback law for any linear system minimizing a quadratic cost in state error and con... - [LVDT Position Sensor](https://unseel.com/engineering/lvdt-sensor.html): An LVDT position sensor is a contactless displacement transducer: one primary coil and two opposed secondaries induce voltages whose diff... - [Magnetorheological Damper](https://unseel.com/engineering/magnetorheological-damper.html): A magnetorheological damper is a controllable shock absorber whose fluid yield stress jumps from near zero to 60-100 kPa within a few mil... - [Magnus Effect](https://unseel.com/engineering/magnus-effect.html): The Magnus effect is the sideways force on a spinning cylinder or sphere moving through a fluid: the spinning surface drags the boundary ... - [Mechanical Face Seal](https://unseel.com/engineering/mechanical-seal.html): A mechanical face seal seals a rotating shaft with two lapped rings held together by a spring; a sub-micron fluid film between the faces ... - [MEMS Accelerometer](https://unseel.com/engineering/mems-accelerometer.html): A MEMS accelerometer is a chip-scale inertial sensor in which a silicon proof mass on flexure springs deflects under acceleration, with a... - [MEMS Gyroscope](https://unseel.com/engineering/mems-gyroscope.html): A MEMS gyroscope vibrates a tiny proof mass; when the chip rotates, the Coriolis force pushes the mass sideways, and a capacitive pickoff... - [Metal Extrusion](https://unseel.com/engineering/metal-extrusion.html): Metal extrusion squeezes a heated billet through a shaped die so the metal flows out as a continuous profile of fixed cross-section — the... - [Metal Stamping](https://unseel.com/engineering/metal-stamping.html): Metal stamping shears, bends, and draws sheet metal between a matched punch and die at hundreds of strokes per minute. The process behind... - [Mohr–Coulomb Soil Strength](https://unseel.com/engineering/mohr-coulomb-soil.html): Mohr–Coulomb soil strength predicts when soil shears: τ = c′ + σ′ tan φ′. Cohesion plus a friction-angle slope set the failure envelope f... - [Mohr's Circle](https://unseel.com/engineering/mohrs-circle-stress.html): Mohr's circle is a graphical method for transforming a 2D stress state between coordinate frames. The center sits at σ_avg = (σ_x+σ_y)/2 ... - [Moment Distribution Method](https://unseel.com/engineering/moment-distribution.html): The moment distribution method is Hardy Cross's iterative way to solve statically indeterminate beams and frames by locking joints, distr... - [Monostable Multivibrator](https://unseel.com/engineering/monostable-multivibrator.html): A monostable multivibrator generates a single pulse of well-defined width when triggered. Built around an NE555 timer or logic gates, pul... - [MOSFET Gate Driver IC](https://unseel.com/engineering/mosfet-driver-gate.html): A gate driver IC sources and sinks several amps of peak current to charge and discharge the MOSFET gate capacitance in tens of nanosecond... - [MOSFET Switching](https://unseel.com/engineering/mosfet-switching.html): A MOSFET is a voltage-controlled switch: drive the gate above V_th and a conducting channel forms between drain and source. Power MOSFETs... - [MPPT Solar Charging](https://unseel.com/engineering/mppt-solar.html): MPPT solar charging is a DC-DC converter algorithm that continuously hunts for the maximum power point on a panel's I-V curve, extracting... - [Multiplexer](https://unseel.com/engineering/multiplexer.html): Many inputs in, one out. Select bits choose which input gets routed. A 4-to-1 mux uses two select bits to pick from four sources — the di... - [NTC and PTC Thermistors](https://unseel.com/engineering/thermistor-ntc-ptc.html): A thermistor is a temperature-sensitive resistor. NTC types fall exponentially with heat (cheap precise sensors); PTC types rise sharply ... - [Nyquist Stability](https://unseel.com/engineering/nyquist-stability.html): Nyquist stability decides if a feedback loop is stable by counting how many times the open-loop frequency response encircles the −1 point... - [Ohm's Law](https://unseel.com/engineering/ohms-law.html): 3D circuit with a battery, resistor, and ammeter. Animate electrons flowing through the wire. Increase resistance and show current decrea... - [Oldham Coupling](https://unseel.com/engineering/oldham-coupling.html): An Oldham coupling links two parallel but offset shafts using a sliding cross disc, transmitting torque at constant velocity while absorb... - [Op-Amp](https://unseel.com/engineering/op-amp.html): An operational amplifier with two resistors and feedback delivers precise, predictable gain. Set Rf to 10× R1 and you get exactly −10× ga... - [Opto-Isolator](https://unseel.com/engineering/opto-isolator.html): An opto-isolator couples an LED to a photodetector inside a single package, sending a signal across a galvanic-isolated barrier with 2.5-... - [Orifice Plate Flow Meter](https://unseel.com/engineering/orifice-plate-flowmeter.html): An orifice plate flow meter is a thin drilled plate that forces flow through a small hole; the pressure drop across it scales with flow s... - [Otto Cycle](https://unseel.com/engineering/otto-cycle.html): The Otto cycle is the idealised thermodynamic loop of every spark-ignition piston engine: isentropic compression, constant-volume heat ad... - [Pantograph Mechanism](https://unseel.com/engineering/pantograph-mechanism.html): A pantograph is a parallelogram linkage whose fixed pivot, tracing point, and drawing point stay collinear at all times, so the drawing p... - [Parabolic Dish Antenna](https://unseel.com/engineering/parabolic-dish-antenna.html): A parabolic dish reflects parallel radio waves to a single feed at the focus, turning a wide wavefront into enormous gain in one directio... - [Paris Law (Fatigue Crack Growth)](https://unseel.com/engineering/paris-law.html): Paris' law says a fatigue crack grows a little each cycle at a rate da/dN = C·(ΔK)m set by the stress-intensity range ΔK. Integrate it fr... - [Peaucellier-Lipkin Linkage](https://unseel.com/engineering/peaucellier-linkage.html): The Peaucellier-Lipkin linkage converts pure rotation into an exact straight line using a circle inversion — seven bars whose geometry fo... - [Peltier Thermoelectric](https://unseel.com/engineering/peltier-thermoelectric.html): A Peltier thermoelectric module pumps heat from one side to the other when DC current flows through a sandwich of p- and n-type semicondu... - [Pelton Wheel](https://unseel.com/engineering/pelton-turbine.html): A Pelton wheel is an impulse turbine that converts a high-velocity water jet into shaft power by striking split double-cup buckets. It ru... - [PEM Fuel Cell](https://unseel.com/engineering/fuel-cell-pem.html): A Proton-Exchange Membrane (PEM) fuel cell electrochemically combines hydrogen and oxygen across a Nafion polymer membrane to produce ele... - [Phase-Locked Loop](https://unseel.com/engineering/phase-locked-loop.html): A phase-locked loop is a feedback circuit that drives a tunable oscillator until its phase matches a reference, locking output frequency ... - [Phased Array Beamforming](https://unseel.com/engineering/phased-array-antenna.html): A phased array steers a radio beam by feeding each antenna element a slightly delayed copy of the same signal. Constructive interference ... - [Photolithography (EUV)](https://unseel.com/engineering/photolithography-euv.html): EUV photolithography projects circuit patterns onto silicon wafers using extreme ultraviolet light at 13.5 nm wavelength. - [PID Controller](https://unseel.com/engineering/pid-controller.html): Sum a term proportional to current error, an integral that eliminates steady-state error, and a derivative that dampens overshoot. Tuned ... - [Piezoelectric Actuator](https://unseel.com/engineering/piezoelectric-actuator.html): A piezoelectric actuator is a crystal or ceramic that physically deforms when an electric field is applied — strain ~0.1-0.2% per layer, ... - [Pile Driving Formula](https://unseel.com/engineering/pile-driving-formula.html): The Engineering News Record formula estimates pile bearing capacity from hammer blow energy and penetration per blow: Q = (W·H)/(s+c). Wo... - [Pile Foundation](https://unseel.com/engineering/pile-foundation.html): A pile foundation transfers structural load through weak surface soils into deeper, stronger strata via long slender columns. Capacity co... - [Pipe Friction (Darcy–Weisbach)](https://unseel.com/engineering/darcy-weisbach-pipe-friction.html): Pipe friction (Darcy–Weisbach) is the pressure a flowing fluid loses to wall drag: head loss h_f = f·(L/D)·(v²/2g), f set by Reynolds num... - [Pitot Tube](https://unseel.com/engineering/pitot-tube.html): A pitot tube measures airspeed by sensing the pressure rise where moving air is brought to rest at its nose, then subtracting the surroun... - [Planetary Gears](https://unseel.com/engineering/planetary-gears.html): A sun gear meshes with three planet gears that orbit inside a ring gear — packing huge reduction ratios into a tight space. The carrier s... - [Plasma Cutting](https://unseel.com/engineering/plasma-cutting.html): Plasma cutting forces an electric arc through a narrow nozzle, ionizing a gas into a 20,000–25,000 °C jet that melts metal and blows the ... - [Plate Girder Bridge](https://unseel.com/engineering/plate-girder-bridge.html): Plate girder bridges weld up I-beam girders from steel plate to span 30 to 100 m. Top flange takes compression, bottom takes tension, web... - [Pneumatic Actuator](https://unseel.com/engineering/pneumatic-actuator.html): A pneumatic actuator converts compressed air pressure into linear or rotary motion. Force = pressure × piston area; trapped air gives a f... - [Post-Tensioned Concrete](https://unseel.com/engineering/post-tensioned-concrete.html): Post-tensioned concrete threads high-strength steel tendons through ducts in cured concrete, then tensions them to 75% of 1860 MPa ultima... - [Powder Metallurgy](https://unseel.com/engineering/powder-metallurgy.html): Powder metallurgy turns atomized metal powders into precision parts by compacting them in a die and sintering below the melting point. Ne... - [Power Factor Correction](https://unseel.com/engineering/power-factor-correction.html): Power factor correction adds capacitors to cancel the lagging reactive current drawn by motors and transformers, pulling current back int... - [Press Fit / Interference Fit](https://unseel.com/engineering/press-fit-interference.html): A press fit (interference fit) holds parts together with no fastener: an oversized shaft forced into a smaller hub creates contact pressu... - [Pressure Relief Valve](https://unseel.com/engineering/relief-valve.html): A pressure relief valve is a spring-loaded safety device that opens at a set pressure to vent excess fluid, protecting vessels and pipes ... - [Prestressed Concrete](https://unseel.com/engineering/prestressed-concrete.html): Steel tendons stretched inside concrete keep it pre-compressed. When loads bend the beam, the bottom never reaches tension — so concrete ... - [Propeller Blade Element Theory](https://unseel.com/engineering/propeller-blade-element.html): Blade Element Theory (BET, Drzewiecki 1885) treats a propeller as a stack of 2D airfoils at increasing radius. Each strip sees its own re... - [Pulley System](https://unseel.com/engineering/pulley-system.html): 3D compound pulley system lifting a heavy block. Show how adding more pulleys reduces the force needed but increases the rope distance pu... - [Pumped-Hydro Storage](https://unseel.com/engineering/pumped-hydro.html): Pumped-hydro storage moves water between an upper and lower reservoir: pump it uphill when power is cheap, release it through reversible ... - [Punching Shear](https://unseel.com/engineering/punching-shear.html): Punching shear is the brittle failure where a column punches a cone of concrete through a flat slab. Check shear stress on a critical per... - [PWM](https://unseel.com/engineering/pwm-pulse-width.html): Switching power on and off very fast at varying duty cycles creates an effective average voltage. PWM controls motor speed, LED brightnes... - [Quadrature Encoder](https://unseel.com/engineering/quadrature-encoder.html): A quadrature encoder is a position sensor whose two output tracks sit 90° apart. The phase order of channels A and B reveals direction, a... - [Rack & Pinion](https://unseel.com/engineering/rack-and-pinion.html): A round pinion gear meshes with a flat toothed rack to convert rotation into linear motion. One full pinion turn moves the rack by exactl... - [Radiation Heat Transfer](https://unseel.com/engineering/radiation-heat-transfer.html): Radiation heat transfer is heat carried by electromagnetic waves across a vacuum. The Stefan-Boltzmann law sets emitted power as εσAT⁴; v... - [Radioisotope Thermoelectric Generator](https://unseel.com/engineering/rtg.html): A radioisotope thermoelectric generator (RTG) turns the decay heat of plutonium-238 directly into electricity through solid-state thermoc... - [Ramjet & Scramjet](https://unseel.com/engineering/ramjet-scramjet.html): A ramjet uses inlet ramps and a normal shock to compress incoming air, burns it subsonically, and expels it through a nozzle — no turboma... - [Rankine Cycle (Steam Power)](https://unseel.com/engineering/rankine-cycle.html): The Rankine cycle is the thermodynamic loop behind almost every coal, nuclear, geothermal and concentrated-solar power plant. Water is pu... - [Ranque-Hilsch Vortex Tube](https://unseel.com/engineering/vortex-tube.html): A Ranque-Hilsch vortex tube spins compressed air into a fast inner vortex and a slow outer one, splitting a single supply into a hot stre... - [Ratchet & Pawl](https://unseel.com/engineering/ratchet-pawl.html): A ratchet and pawl allows rotation in one direction and locks it in the other. Tooth shape, pawl pivot geometry, and spring force set hol... - [RC Snubber](https://unseel.com/engineering/snubber-circuit.html): An RC snubber is a resistor and capacitor in series placed across a switch or diode to absorb the inductive-kick voltage spike and damp t... - [RC Time Constant](https://unseel.com/engineering/rc-time-constant.html): The RC time constant τ = R·C is the universal yardstick of first-order linear systems. It sets the settling time of an RC circuit, the cu... - [Reaction Wheel](https://unseel.com/engineering/reaction-wheel.html): A reaction wheel is a motor-driven flywheel inside a satellite that spins one way so the spacecraft rotates the other — pointing a telesc... - [Reduction Gearbox](https://unseel.com/engineering/reduction-gearbox.html): A reduction gearbox cascades gear pairs to slow rotation and multiply torque. Each stage's ratio multiplies into the total: a 4:1 then 3:... - [Regenerative Braking](https://unseel.com/engineering/regenerative-braking.html): Regenerative braking runs the drive motor backward as a generator, converting a vehicle's kinetic energy into electricity to recharge the... - [Regenerative Cooling](https://unseel.com/engineering/regenerative-cooling-nozzle.html): Regenerative cooling routes fuel through hundreds of channels milled into the rocket nozzle wall before injection. - [Reinforced Concrete Beam](https://unseel.com/engineering/reinforced-concrete-beam.html): A reinforced concrete beam embeds steel rebar in the tension zone so concrete carries compression while steel carries the tension it cann... - [Reluctance Motor (SRM & SynRM)](https://unseel.com/engineering/reluctance-motor.html): A reluctance motor produces torque by pulling a magnetically salient rotor toward the lowest-reluctance alignment with a rotating stator ... - [Residual Stress](https://unseel.com/engineering/residual-stress.html): Residual stress is self-balancing internal stress locked into a part with no external load — from uneven cooling, welding or machining. H... - [Retaining Wall Design](https://unseel.com/engineering/retaining-wall-design.html): A retaining wall holds back a mass of soil or water against lateral pressure. Design it by checking three failure modes — overturning, sl... - [Retreating Blade Stall](https://unseel.com/engineering/retreating-blade-stall.html): In forward flight a helicopter's retreating blade sees airflow as slow as the aircraft's own speed subtracted from rotor tip speed. To ca... - [Reuleaux Triangle](https://unseel.com/engineering/reuleaux-triangle.html): A Reuleaux triangle is a curve of constant width built from three circular arcs — it rolls as smoothly as a circle yet has corners. That ... - [Reynolds Number](https://unseel.com/engineering/reynolds-number.html): The Reynolds number Re = ρvD/μ is a dimensionless ratio of inertial to viscous forces. Below a critical value the flow is laminar — order... - [RLC Circuit](https://unseel.com/engineering/rlc-circuit.html): Resistor, inductor, and capacitor together create the universal frequency-selective network. At a special resonant frequency, inductive a... - [Robot Jacobian](https://unseel.com/engineering/robot-jacobian.html): The robot Jacobian is the matrix that maps a manipulator's joint velocities to its end-effector velocity. It sets workspace speed, torque... - [Robot Joints (Revolute, Prismatic, Spherical)](https://unseel.com/engineering/robot-joints.html): Robot joints connect rigid links and impose specific degrees of freedom. The six classical lower-pair joints — revolute, prismatic, cylin... - [Rocket Nozzle](https://unseel.com/engineering/rocket-nozzle.html): A throat chokes flow at Mach 1; a diverging cone accelerates it past Mach 5. The bell shape of every rocket nozzle is a thermodynamic equ... - [Rocket Stability: CP vs CG](https://unseel.com/engineering/center-of-pressure.html): Rocket stability is the rule that a rocket flies straight only when its center of pressure sits behind its center of gravity. Move the ae... - [Rocket Staging](https://unseel.com/engineering/rocket-staging.html): A multi-stage rocket discards fuel tanks and engines after burnout, slashing dry mass to keep accelerating. The Tsiolkovsky rocket equati... - [Rogowski Coil](https://unseel.com/engineering/rogowski-coil.html): A Rogowski coil is an air-core toroidal coil wrapped around a current-carrying conductor. Output V = M·dI/dt; an integrator turns it back... - [Roller Bearing](https://unseel.com/engineering/roller-bearing.html): A roller bearing uses cylindrical, tapered, spherical, or needle rollers between two races. Line contact (vs the point contact of a ball ... - [Root Locus](https://unseel.com/engineering/root-locus.html): Root locus is a graphical map of how a closed-loop system's poles move across the s-plane as the loop gain rises from zero to infinity — ... - [Rotor Balancing](https://unseel.com/engineering/rotor-balancing.html): Rotor balancing adds correction weights to cancel the centrifugal force of an off-center mass, killing the vibration that grows with the ... - [RRT Path Planning](https://unseel.com/engineering/rrt-path-planning.html): A rapidly-exploring random tree (RRT) grows from the start toward random samples, snapping each branch to a fixed step length, to find a ... - [Schmitt Trigger](https://unseel.com/engineering/schmitt-trigger.html): A Schmitt trigger is a comparator with positive feedback that gives different threshold voltages for rising and falling input. The hyster... - [Scissor Lift Mechanism](https://unseel.com/engineering/scissor-lift.html): A scissor lift uses cross-braced (pantograph) links pinned in an X to turn a short horizontal actuator stroke into a tall, stable vertica... - [Scotch Yoke](https://unseel.com/engineering/scotch-yoke.html): A Scotch yoke converts rotation into pure sinusoidal linear motion. A pin on a rotating crank slides inside a slot in the yoke, forcing t... - [Scramjet Inlet](https://unseel.com/engineering/scramjet-inlet.html): A scramjet inlet decelerates Mach 5+ air to ~Mach 3 with a stack of oblique shocks — no turbomachinery, no normal shock. Combustion happe... - [Seismic Base Isolation](https://unseel.com/engineering/base-isolation.html): Base isolation decouples a building from ground shaking by inserting flexible bearings — rubber, lead-cored rubber, or curved sliders — b... - [Seismic Base Isolation](https://unseel.com/engineering/seismic-base-isolation.html): Seismic base isolation lengthens a building's period from ~0.5 s to 2.5 to 3 s with flexible bearings — slashing story acceleration 5 to ... - [Selective Laser Sintering](https://unseel.com/engineering/selective-laser-sintering.html): Selective Laser Sintering (SLS) builds parts by scanning a CO₂ or fiber laser across a heated powder bed, fusing particles layer by layer... - [Series Elastic Actuator](https://unseel.com/engineering/series-elastic-actuator.html): A series elastic actuator puts a spring between the motor and the load, so measuring the spring's deflection turns force control into a p... - [Serpentine Belt](https://unseel.com/engineering/serpentine-belt.html): A serpentine belt is a single long, flat, multi-ribbed belt that drives every engine accessory at once — alternator, water pump, AC compr... - [Servo Motor Control](https://unseel.com/engineering/servo-motor-control.html): A servo motor is a motor plus an encoder plus a controller that closes position, velocity, and current loops in cascade. Outer position r... - [Shaft Whirling & Critical Speed](https://unseel.com/engineering/whirling-shaft-critical-speed.html): Shaft whirling is the resonant bowing of a rotating shaft at its critical speed, where spin rate matches the shaft's bending natural freq... - [Shape Memory Alloy](https://unseel.com/engineering/shape-memory-alloy.html): A shape-memory alloy is a metal that recovers a programmed shape after deformation when heated past its transition temperature. Nitinol —... - [Shear Key Retaining Wall](https://unseel.com/engineering/shear-key-retaining.html): A shear key is a concrete fin cast into a retaining wall's footing that projects down into the soil to resist sliding by mobilising passi... - [Shear Stress Distribution](https://unseel.com/engineering/shear-stress-distribution.html): A simply-supported beam carrying a transverse load develops both bending stress (σ, varying linearly across the depth) and shear stress (... - [Shear Wall](https://unseel.com/engineering/shear-wall.html): A shear wall is a stiff vertical structural panel that resists in-plane lateral loads — wind and earthquake — carrying them as shear down... - [Sheet Metal Bending](https://unseel.com/engineering/sheet-metal-bending.html): Sheet metal bending plastically forms a flat blank into an angle on a press brake, but the part springs back elastically — so the punch m... - [Shell-and-Tube Heat Exchanger](https://unseel.com/engineering/shell-tube-heat-exchanger.html): A shell-and-tube heat exchanger is the industrial workhorse for transferring heat between two fluids: a bundle of tubes inside a cylindri... - [Shock Absorber](https://unseel.com/engineering/shock-absorber.html): A coil spring stores impact energy; a piston-in-fluid damper turns motion into heat. Together they kill the bounce in one or two cycles. ... - [Shot Peening](https://unseel.com/engineering/shot-peening.html): Shot peening blasts a metal surface with thousands of tiny round media particles; each impact plastically stretches a thin surface skin, ... - [Sigma-Delta ADC](https://unseel.com/engineering/sigma-delta-adc.html): A sigma-delta ADC trades speed for resolution: it oversamples a signal far above Nyquist, feeds the error back through an integrator to p... - [Slab Formwork](https://unseel.com/engineering/slab-formwork.html): Slab formwork is the temporary structure holding wet concrete in place until it cures and supports itself. Pressure can hit ρgh ≈ 24 kPa ... - [Slip Ring Rotor](https://unseel.com/engineering/slip-ring-rotor.html): A slip ring is a conductive ring on a rotating shaft contacted by stationary carbon brushes — it carries current to or from a rotating pa... - [Slope Stability](https://unseel.com/engineering/slope-stability.html): Slope stability is the ratio of resisting shear strength to driving gravity load on a slope. Learn the factor of safety, slip surfaces, t... - [Soil Bearing Capacity](https://unseel.com/engineering/soil-bearing-capacity.html): A foundation can press on the soil only as hard as the soil can push back. The ultimate bearing capacity q_ult is set by Terzaghi's equat... - [Soil Consolidation](https://unseel.com/engineering/soil-consolidation.html): Soil consolidation is the slow volume reduction of a saturated clay as load squeezes pore water out over months to decades. Here's the me... - [Soil Liquefaction](https://unseel.com/engineering/soil-liquefaction.html): Soil liquefaction: when saturated loose sand is shaken, pore water pressure rises, effective stress drops to zero, and the soil flows lik... - [Solar Cell (Photovoltaic)](https://unseel.com/engineering/solar-cell-photovoltaic.html): A photovoltaic cell uses a semiconductor p-n junction to convert sunlight directly into electricity. Each photon with energy above the ba... - [Specific Impulse](https://unseel.com/engineering/specific-impulse.html): Specific impulse (Isp) measures how efficiently a rocket engine turns propellant into thrust — thrust per unit weight-flow, in seconds. E... - [Sprag One-Way Clutch](https://unseel.com/engineering/sprag-clutch.html): A sprag one-way clutch is a ring of asymmetric figure-eight cams that wedge between two races to lock in one direction and tilt free to o... - [State-Space Control](https://unseel.com/engineering/state-space-control.html): State-space control models a dynamical system as ẋ = Ax + Bu, y = Cx + Du. Eigenvalues of A set stability; controllability and observabil... - [Stepper Motor Microstepping](https://unseel.com/engineering/stepper-motor-microstepping.html): Microstepping commands a stepper motor in fractional steps by driving two phase currents as sine and cosine. A 1.8° hybrid stepper with 1... - [Stereolithography (SLA)](https://unseel.com/engineering/stereolithography.html): Stereolithography (SLA) builds a part by curing liquid photopolymer resin layer by layer with a focused UV laser or LCD light. It deliver... - [Stewart Platform (6-DOF)](https://unseel.com/engineering/stewart-platform.html): A Stewart platform is a parallel manipulator with six independently extending legs joining a fixed base to a moving platform, providing f... - [Stirling Engine](https://unseel.com/engineering/stirling-engine.html): A Stirling engine is a sealed external-combustion heat engine that produces work from a temperature difference by cyclically shuttling a ... - [Strain-Gauge Rosette](https://unseel.com/engineering/strain-gauge-rosette.html): A strain-gauge rosette combines three gauges at 45° or 60° offsets to measure the full strain tensor at one point: ε_x, ε_y, γ_xy. Solve ... - [Stress Concentration](https://unseel.com/engineering/stress-concentration.html): Stress concentration is the local rise in stress around holes, notches and sharp corners; the factor Kt multiplies nominal stress and dic... - [Stress-Strain Curve](https://unseel.com/engineering/stress-strain-curve.html): Stretch a metal rod and plot stress against strain — the curve tells you everything. Linear elastic, then a yield point, then plastic flo... - [Supercapacitor](https://unseel.com/engineering/supercapacitor.html): A supercapacitor stores energy electrostatically in a nanometer-thin electric double layer at the surface of porous carbon electrodes — n... - [Supercavitation](https://unseel.com/engineering/supercavitation.html): Supercavitation wraps a fast underwater body in a single gas-filled cavity so only its nose touches water — cutting skin-friction drag by... - [Superheterodyne Receiver](https://unseel.com/engineering/superheterodyne-receiver.html): A superheterodyne receiver multiplies the incoming RF by a local oscillator to shift every station down to one fixed intermediate frequen... - [Supersonic Shock Waves](https://unseel.com/engineering/shock-wave-supersonic.html): A shock wave is a thin region of supersonic flow across which pressure, density, and temperature jump almost discontinuously while the fl... - [Surface Grinding](https://unseel.com/engineering/surface-grinding.html): Surface grinding finishes a metal part flat and smooth with a fast-spinning abrasive wheel whose grits each shear off a micro-chip a few ... - [Surge Arrester](https://unseel.com/engineering/surge-arrester.html): A surge arrester is a metal-oxide varistor that stays nearly open-circuit at normal voltage, then clamps a lightning or switching surge t... - [Suspension Bridge](https://unseel.com/engineering/suspension-bridge.html): Massive cables draped over towers carry the deck below in pure tension. Towers carry pure compression. The catenary curve and three force... - [Swashplate (Helicopter Rotor Control)](https://unseel.com/engineering/swashplate.html): A helicopter swashplate translates pilot stick inputs into the cyclic blade-pitch changes that steer the aircraft. A non-rotating ring ri... - [Swept Wing](https://unseel.com/engineering/swept-wing.html): A swept wing is angled rearward (or forward) from the fuselage so that only the airflow component perpendicular to the leading edge — V·c... - [Synchromesh](https://unseel.com/engineering/synchromesh-gearbox.html): Synchromesh is the cone-clutch synchronizer inside a manual gearbox that spins the next gear up to shaft speed by friction before the dog... - [Synchronous Motor](https://unseel.com/engineering/synchronous-motor.html): A synchronous motor is an AC motor where the rotor turns at exactly the same speed as the rotating stator field — no slip. Permanent-magn... - [Tensegrity](https://unseel.com/engineering/tensegrity.html): Tensegrity is a structure where rigid struts never touch, held apart only by a continuous network of pretensioned cables. The self-stress... - [Tesla Valve](https://unseel.com/engineering/tesla-valve.html): A Tesla valve is a no-moving-parts fluidic diode: a chain of teardrop-shaped loops that lets fluid pass freely one way but forces it to f... - [Thermocouple](https://unseel.com/engineering/thermocouple.html): Two different metals joined at one end create a tiny voltage proportional to temperature — the Seebeck effect. No external power needed. ... - [Three-Phase Power](https://unseel.com/engineering/three-phase-power.html): Three-phase power is AC delivered on three conductors carrying sinusoids spaced 120 degrees apart, so their instantaneous powers sum to a... - [Thyristor (SCR)](https://unseel.com/engineering/thyristor-scr.html): A thyristor (SCR) is a four-layer PNPN latching switch: a small gate pulse turns it on, and it stays on until the main current falls belo... - [Tilt-Rotor Aircraft](https://unseel.com/engineering/tilt-rotor.html): A tilt-rotor aircraft uses proprotors that rotate from vertical (helicopter mode) to horizontal (airplane mode), giving it VTOL capabilit... - [Torque Converter](https://unseel.com/engineering/torque-converter.html): A torque converter is a fluid coupling with a stator that multiplies engine torque at stall up to ~2.5×, then freewheels and locks up at ... - [Torsion Bar](https://unseel.com/engineering/torsion-bar-spring.html): A torsion bar is a straight steel rod that springs by twisting in shear instead of bending. One bar can do the whole job of a coil spring... - [Trajectory Planning](https://unseel.com/engineering/trajectory-planning.html): Trajectory planning generates a smooth time-parameterized path that moves a robot joint between setpoints while respecting velocity, acce... - [Transformer (Mutual Induction)](https://unseel.com/engineering/transformer-flux.html): A transformer steps voltage up or down through mutual induction between two coils sharing a magnetic core. The voltage ratio equals the t... - [Transimpedance Amplifier](https://unseel.com/engineering/tia-transimpedance.html): A transimpedance amplifier (TIA) converts a tiny photodiode current into a usable voltage using an op-amp with a feedback resistor. V_out... - [Transistor Amplifier](https://unseel.com/engineering/transistor-amplifier.html): A tiny base current controls a much larger collector current — the bipolar transistor's defining trick. A 1-percent change in the base pr... - [Transmission Line Power](https://unseel.com/engineering/transmission-line-power.html): High-voltage transmission lines move bulk electric power over hundreds of kilometres. Because resistive loss scales as I²R, multiplying v... - [TRIAC](https://unseel.com/engineering/triac.html): A TRIAC is a three-terminal bidirectional semiconductor switch that conducts both halves of an AC waveform, fired by a gate pulse to cont... - [Tripod CV Joint](https://unseel.com/engineering/cv-joint-tripod.html): A tripod CV joint uses three rollers in trunnions, riding axial grooves inside a tulip housing. Unlike the Rzeppa, it accepts both angula... - [Truss Bridge](https://unseel.com/engineering/truss-bridge.html): 3D truss bridge made of triangular members. Animate a load moving across, showing which members are in tension (glowing blue) and compres... - [Tuned Liquid Damper](https://unseel.com/engineering/tuned-liquid-damper.html): A tuned liquid damper is a roof-top water tank tuned so the natural sloshing period matches the building's sway period. The wave moves op... - [Tuned Mass Damper](https://unseel.com/engineering/tuned-mass-damper.html): A massive pendulum tuned to the building's natural sway period swings out-of-phase, sucking energy from the oscillation. Taipei 101's 660... - [Tunnel Boring Machine](https://unseel.com/engineering/tunnel-boring-machine.html): A tunnel boring machine (TBM) excavates a tunnel while assembling a permanent concrete lining behind it. - [Turbocharger & Wastegate](https://unseel.com/engineering/turbocharger-wastegate.html): A turbocharger uses exhaust energy to spin a centrifugal compressor that boosts intake pressure 0.5–2.5 bar above atmospheric, recovering... - [Turbofan Bypass Ratio](https://unseel.com/engineering/turbofan-bypass-ratio.html): The ratio of bypass airflow to core airflow defines a jet engine's character. High-bypass turbofans (10–12:1) move enormous mass at modes... - [Two-Stroke Engine](https://unseel.com/engineering/two-stroke-engine.html): A two-stroke engine fires every crank revolution instead of every other, doubling power density and halving moving parts. Scavenging thro... - [Universal Joint](https://unseel.com/engineering/universal-joint.html): Two perpendicular yokes connected by a cross-shaped spider transfer torque between shafts at angles up to 30 degrees. Two in series cance... - [Vacuum Forming (Thermoforming)](https://unseel.com/engineering/vacuum-forming.html): Vacuum forming heats a plastic sheet until it sags, then sucks it tight against a one-sided mold using atmospheric pressure as the press.... - [Valve Timing & the Camshaft](https://unseel.com/engineering/valve-timing-cam.html): Valve timing is the schedule of intake and exhaust openings inside a four-stroke engine, set by the lobe shape and phasing of the camshaf... - [Valve Train](https://unseel.com/engineering/valve-train.html): A valve train translates camshaft rotation into precise intake and exhaust valve motion, synchronised to the crankshaft. OHV, OHC, and DO... - [Vapor-Compression Refrigeration](https://unseel.com/engineering/vapor-compression-refrigeration.html): Vapor-compression refrigeration is a four-step loop — compress, condense, expand, evaporate — that moves heat from cold to hot by boiling... - [Venturi Effect](https://unseel.com/engineering/venturi-effect.html): The Venturi effect is the pressure drop that occurs when a fluid speeds up through a constricted section of pipe. Conservation of mass fo... - [Vernier Thruster](https://unseel.com/engineering/vernier-thruster.html): A vernier thruster is a small auxiliary rocket used for attitude control and trajectory fine-tuning. The Apollo CSM carried 16 RCS thrust... - [Vibration Isolation](https://unseel.com/engineering/vibration-isolation.html): Vibration isolation uses soft spring-damper mounts to block shaking from passing between a machine and its support. Force only attenuates... - [Von Mises Criterion](https://unseel.com/engineering/von-mises-criterion.html): The von Mises criterion predicts the onset of plastic yielding in ductile materials by comparing the distortion strain energy to a critic... - [Vortex Generators](https://unseel.com/engineering/vortex-generator.html): A vortex generator is a small vane — typically the height of the boundary layer — that sheds a streamwise vortex, mixing fast outer air d... - [Vortex Shedding (Kármán Street)](https://unseel.com/engineering/vortex-shedding.html): When a steady fluid flow encounters a bluff body, the wake doesn't stay attached. Vortices peel off alternately from the two shoulders, f... - [Wankel Rotary Engine](https://unseel.com/engineering/rotary-engine-wankel.html): A Wankel rotary engine replaces the reciprocating piston with a triangular rotor sweeping an epitrochoidal housing. Three combustion even... - [Water Hammer](https://unseel.com/engineering/water-hammer.html): Water hammer is the pressure surge that hits a pipe when flowing liquid is suddenly stopped — slam a valve and the momentum becomes a sho... - [Wheatstone Bridge](https://unseel.com/engineering/wheatstone-bridge.html): Four resistors in a diamond and a sensitive galvanometer let you measure unknown resistance with extreme precision. Adjust the variable a... - [Whitworth Quick-Return Mechanism](https://unseel.com/engineering/whitworth-quick-return.html): The Whitworth quick-return mechanism is a crank-and-slotted-link drive whose driven center sits inside the crank circle, so the cutting s... - [Wind Load Pressure](https://unseel.com/engineering/wind-load-pressure.html): Wind load pressure on a structure is q = ½ρV² multiplied by a pressure coefficient C_p. At 30 m/s a square metre of windward wall feels a... - [Wind Turbine](https://unseel.com/engineering/wind-turbine.html): Three airfoil blades catch wind via lift, spinning a generator inside the nacelle. Variable blade pitch and yaw track changing winds. Fro... - [Wing Dihedral](https://unseel.com/engineering/dihedral-stability.html): Wing dihedral is the upward V-angle of an aircraft's wings that creates a rolling moment opposing sideslip, automatically rolling the pla... - [Wing Flaps & High-Lift Devices](https://unseel.com/engineering/wing-flap-high-lift.html): Wing flaps and slats are deployable high-lift devices that boost a wing's C_L,max from about 1.5 in clean cruise to 2.5–3.0 with flaps, o... - [Winglet](https://unseel.com/engineering/winglet.html): A winglet is an upturned wingtip surface that weakens the trailing vortex and recovers energy lost to induced drag, typically cutting cru... - [Wire EDM](https://unseel.com/engineering/wire-edm.html): Wire EDM is a non-contact machining process that erodes hardened metal with thousands of electric sparks per second across a dielectric g... - [Worm Drive Self-Locking](https://unseel.com/engineering/worm-drive-self-locking.html): A worm-gear pair becomes self-locking when the worm's lead angle is less than the friction angle (~5° for oiled steel). The wheel can dri... - [Worm Gear](https://unseel.com/engineering/worm-gear.html): A screw-shaped worm meshes with a perpendicular wheel for extreme reduction. 30 worm rotations per wheel turn — and self-locking, so the ... - [Yagi-Uda Antenna](https://unseel.com/engineering/yagi-antenna.html): A Yagi-Uda antenna turns one driven dipole into a directional beam by adding a slightly longer reflector behind it and a row of slightly ... - [Zener Diode](https://unseel.com/engineering/zener-diode.html): A Zener diode breaks down in reverse at a precise voltage — and then conducts safely. Wire it in reverse with a series resistor and you h... - [Zero Moment Point](https://unseel.com/engineering/zmp-bipedal.html): The Zero Moment Point (ZMP) is the spot on the ground where the ground reaction force produces zero tipping moment. Keep it inside the fo... - [Ziegler–Nichols Tuning](https://unseel.com/engineering/ziegler-nichols.html): Ziegler–Nichols tuning is a recipe for setting PID gains: push the loop until it oscillates steadily, read the ultimate gain Ku and perio... ## Psychology Mind, behaviour, cognition, and human experience. 96 concepts. - [Psychology index](https://unseel.com/psychology.html): All psychology concepts - [Anchoring Bias](https://unseel.com/psychology/anchoring-bias.html): 3D number anchor drops heavily onto a scale. All subsequent estimates orbit around it, unable to drift far. Shows how an initial piece of... - [Asch Conformity Experiment](https://unseel.com/psychology/asch-conformity.html): 3D group looking at line lengths. The answer is obviously A, but confederates all say C. The subject squirms, then conforms and says C to... - [Attachment Theory](https://unseel.com/psychology/attachment-theory.html): 3D mother-child pairs showing three attachment styles. Secure: child explores freely and returns. Anxious: child clings. Avoidant: child ... - [Availability Heuristic](https://unseel.com/psychology/availability-heuristic.html): 3D brain with vivid memories (plane crash, shark attack) glowing bright and easily accessible, while common dangers (heart disease, car a... - [Big Five Personality Traits](https://unseel.com/psychology/personality-big-five.html): 3D five sliders for Openness, Conscientiousness, Extraversion, Agreeableness, Neuroticism. Each slider adjusts to show a unique personali... - [Bobo Doll Experiment](https://unseel.com/psychology/bandura-bobo.html): 3D scene: adult aggressively hits a Bobo doll while a child watches. Then the child is left alone with the doll and imitates the aggressi... - [Bystander Effect](https://unseel.com/psychology/bystander-effect.html): 3D scene with a person needing help surrounded by increasing numbers of bystanders. As crowd grows, each individual's sense of responsibi... - [Change Blindness](https://unseel.com/psychology/change-blindness.html): 3D scene that changes during a brief interruption (flash). A major element disappears or changes color, but the observer doesn't notice. ... - [Circadian Rhythm](https://unseel.com/psychology/circadian-rhythm.html): 3D 24-hour clock with a human figure. Melatonin rises at night (blue glow, figure sleeps). Cortisol rises at dawn (gold glow, figure wake... - [Classical Conditioning](https://unseel.com/psychology/classical-conditioning.html): 3D animation of Pavlov's experiment. A bell rings (neutral stimulus), then food appears causing salivation. After repeated pairings, the ... - [Classical vs Operant Conditioning](https://unseel.com/psychology/classical-vs-operant.html): 3D split comparison. Left: Pavlov's bell-food pairing (involuntary response). Right: Skinner's lever-reward (voluntary behavior). Arrows ... - [Cocktail Party Effect](https://unseel.com/psychology/cocktail-party.html): 3D noisy party with multiple conversation bubbles. All are gray noise except when your name is spoken — it instantly glows bright, cuttin... - [Cognitive Behavioral Therapy](https://unseel.com/psychology/cognitive-behavioral.html): 3D triangle connecting Thoughts, Feelings, and Behaviors. Negative thought triggers bad feeling triggers avoidance behavior. CBT interven... - [Cognitive Dissonance](https://unseel.com/psychology/cognitive-dissonance.html): 3D brain with two opposing thought bubbles colliding. The collision creates visible tension waves. Show resolution by changing one belief... - [Cognitive Load Theory](https://unseel.com/psychology/cognitive-load.html): 3D working memory buffer filling with information blocks. When overloaded, blocks fall off the edges. Chunking groups blocks together to ... - [Cognitive Restructuring](https://unseel.com/psychology/cognitive-restructuring.html): 3D negative thought cloud (dark red 'I'm a failure') being examined, challenged with evidence, and transformed into a balanced thought (g... - [Confirmation Bias](https://unseel.com/psychology/confirmation-bias.html): 3D funnel where mixed evidence (green/red spheres) enters. The brain filter only lets through confirming evidence (green) and blocks disc... - [Defense Mechanisms](https://unseel.com/psychology/defense-mechanisms.html): 3D ego shield deflecting threatening thoughts in different ways: denial (bouncing back), projection (redirecting onto others), repression... - [Demand Characteristics](https://unseel.com/psychology/demand-characteristics.html): 3D experiment where the participant notices cues about what the researcher expects. The participant changes behavior to match expectation... - [Diffusion of Responsibility](https://unseel.com/psychology/diffusion-responsibility.html): 3D emergency scene. With 1 bystander, responsibility beam is bright and focused. With 5 bystanders, each person's beam splits and dims. W... - [Door-in-the-Face Technique](https://unseel.com/psychology/door-in-the-face.html): 3D door that slams shut after a huge request. Then a smaller, reasonable request follows — the person agrees. The rejection of the first ... - [Dunning-Kruger Effect](https://unseel.com/psychology/dunning-kruger.html): 3D graph showing confidence vs actual competence. Beginners have peak confidence (Mount Stupid), experts have moderate confidence. The va... - [Ego Depletion](https://unseel.com/psychology/ego-depletion.html): 3D willpower battery that drains with each self-control decision. Resisting cookies, suppressing emotions, making hard choices — each dep... - [Elaboration Likelihood Model](https://unseel.com/psychology/elaboration-likelihood.html): 3D fork: high-motivation path goes through central route (analyzing arguments carefully) while low-motivation path takes peripheral route... - [Emotional Intelligence](https://unseel.com/psychology/emotional-intelligence.html): 3D four-quadrant model: self-awareness (mirror), self-regulation (thermostat), social awareness (radar), relationship management (handsha... - [Endowment Effect](https://unseel.com/psychology/endowment-effect.html): 3D mug experiment. People given a mug value it at $7. People without a mug would only pay $3 for the same mug. Simply owning something ma... - [Erikson's Psychosocial Stages](https://unseel.com/psychology/erikson-stages.html): 3D staircase of 8 ascending stages from infancy to old age. Each step presents a crisis: trust vs mistrust, identity vs confusion, integr... - [Extinction Burst](https://unseel.com/psychology/extinction-burst.html): 3D graph of behavior frequency. When reinforcement stops, behavior temporarily spikes dramatically (the burst) before gradually declining... - [Extinction in Classical Conditioning](https://unseel.com/psychology/pavlovian-extinction.html): 3D Pavlov setup. Bell rings with food → salivation. Then bell rings WITHOUT food repeatedly. Salivation response gradually decreases to z... - [Fight or Flight Response](https://unseel.com/psychology/fight-or-flight.html): 3D body outline with the amygdala highlighted detecting a threat. Adrenaline particles flood the bloodstream, heart rate increases, pupil... - [Five Stages of Grief](https://unseel.com/psychology/stages-of-grief.html): 3D ascending path through five stages: denial (fog), anger (red flames), bargaining (golden scales), depression (dark valley), acceptance... - [Flashbulb Memory](https://unseel.com/psychology/flashbulb-memory.html): 3D camera flash capturing a dramatic moment in hyper-vivid detail. The memory feels perfectly preserved — but research shows flashbulb me... - [Flow State](https://unseel.com/psychology/flow-state.html): 3D graph with challenge on Y-axis and skill on X-axis. Boredom zone at low challenge, anxiety zone at high challenge. The flow channel gl... - [Foot-in-the-Door Technique](https://unseel.com/psychology/foot-in-the-door.html): 3D foot wedging open a door with a tiny favor. Once agreed, a larger request follows — and the person complies because they want to be co... - [Framing Effect](https://unseel.com/psychology/framing-effect.html): 3D glass that is half full on one side and half empty on the other — same amount of water. People choose differently based on framing. Sh... - [Fundamental Attribution Error](https://unseel.com/psychology/fundamental-attribution.html): 3D scene: someone trips and falls. Observer's thought bubble shows 'clumsy person' (personality attribution) while the actual cause is a ... - [Garcia Effect](https://unseel.com/psychology/garcia-effect.html): 3D person eating food that later causes nausea. In just ONE pairing, the person develops a strong aversion to that food — even if nausea ... - [General Adaptation Syndrome](https://unseel.com/psychology/stress-response.html): 3D stress curve through three stages. Alarm: body mobilizes (spike). Resistance: body adapts and copes (plateau). Exhaustion: prolonged s... - [Groupthink](https://unseel.com/psychology/groupthink.html): 3D circle of identical figures all nodding in agreement. One dissenter's thought bubble gets suppressed. The group makes a bad decision (... - [Habituation](https://unseel.com/psychology/habituation.html): 3D person startling at a loud sound. With each repetition, the startle response shrinks (response bar decreases). The brain learns the st... - [Halo Effect](https://unseel.com/psychology/halo-effect.html): 3D person with a glowing halo above their head. Positive trait rays (attractive, smart, kind) radiate outward from a single positive impr... - [Hindsight Bias](https://unseel.com/psychology/hindsight-bias.html): 3D timeline with an event outcome revealed at the end. Looking backward, glowing arrows seem to point inevitably toward that outcome. But... - [Illusory Correlation](https://unseel.com/psychology/illusory-correlation.html): 3D random dots with the brain drawing connecting lines between unrelated events. Two rare events occurring together seem linked, but a st... - [Illusory Superiority](https://unseel.com/psychology/illusory-superiority.html): 3D bar chart where 80% of people rate themselves above average in driving, intelligence, and attractiveness. Mathematically impossible — ... - [Implicit Bias](https://unseel.com/psychology/implicit-bias.html): 3D brain with two pathways: a fast automatic path (implicit) making snap judgments, and a slow deliberate path (explicit) making reasoned... - [In-Group Out-Group Bias](https://unseel.com/psychology/ingroup-outgroup.html): 3D two groups divided by a line. Same objective behavior evaluated differently: in-group member's aggression is 'standing up for themselv... - [Intrinsic vs Extrinsic Motivation](https://unseel.com/psychology/motivation-intrinsic.html): 3D two engines: intrinsic (glowing inner fire, powered by curiosity and enjoyment) vs extrinsic (external fuel pump, powered by rewards a... - [Just World Hypothesis](https://unseel.com/psychology/just-world-hypothesis.html): 3D scales of justice that incorrectly balance — victims are blamed and successful people are assumed to be virtuous. The belief that the ... - [Kohlberg's Moral Development](https://unseel.com/psychology/moral-development.html): 3D ascending platforms: Level 1 (avoid punishment), Level 2 (follow rules for social order), Level 3 (universal principles). A figure cli... - [Learned Helplessness](https://unseel.com/psychology/learned-helplessness.html): 3D figure in a box receiving unavoidable negative events. After many attempts to escape fail, the figure stops trying even when the door ... - [Locus of Control](https://unseel.com/psychology/locus-of-control.html): 3D person at a crossroads. Internal locus: steering wheel in their hands (I control my fate, glowing green). External locus: puppet strin... - [Loss Aversion](https://unseel.com/psychology/loss-aversion.html): 3D scale where losing $100 weighs much heavier than gaining $100. The loss side drops dramatically while the gain side barely rises. Show... - [Marshmallow Test](https://unseel.com/psychology/stanford-marshmallow.html): 3D child sitting at a table with one marshmallow. A timer counts down. The child can eat it now or wait for two marshmallows. Show the in... - [Maslow's Hierarchy of Needs](https://unseel.com/psychology/maslows-hierarchy.html): 3D pyramid with five ascending layers: physiological, safety, love/belonging, esteem, self-actualization. Each layer lights up from botto... - [Memory Encoding](https://unseel.com/psychology/memory-encoding.html): 3D pipeline showing information flowing through three memory stages. Sensory memory (brief flash), short-term/working memory (7 slots), a... - [Mere Exposure Effect](https://unseel.com/psychology/mere-exposure.html): 3D objects appearing repeatedly. With each exposure, the object glows warmer and a liking meter rises. Shows how simply seeing something ... - [Milgram's Obedience Study](https://unseel.com/psychology/milgram-obedience.html): 3D scene with an authority figure instructing a subject to deliver increasing voltage shocks. The voltage meter climbs with each step. Sh... - [Negative Reinforcement vs Punishment](https://unseel.com/psychology/negative-reinforcement.html): 3D comparison. Negative reinforcement: removing something bad increases behavior (taking aspirin removes headache → take aspirin more). P... - [Neuroplasticity](https://unseel.com/psychology/neuroplasticity.html): 3D neural network where pathways strengthen with use (getting brighter and thicker) and weaken with disuse (fading). New connections form... - [Neurotransmitters](https://unseel.com/psychology/neurotransmitters.html): 3D synapse gap between two neurons. Neurotransmitter molecules (dopamine in gold, serotonin in blue, GABA in green) cross the synaptic cl... - [Obedience to Authority](https://unseel.com/psychology/obedience-authority.html): 3D figures in different attire. Lab coat figure gives orders and 65% comply. Casual figure gives same orders and few comply. The uniform ... - [Observational Learning](https://unseel.com/psychology/observational-learning.html): 3D chain: a model performs a behavior, an observer watches (attention rays), stores it mentally (retention), then reproduces it (motor re... - [Operant Conditioning](https://unseel.com/psychology/operant-conditioning.html): 3D Skinner box with a rat pressing a lever. Positive reinforcement (food pellet) increases behavior. Punishment (mild shock) decreases it... - [Overjustification Effect](https://unseel.com/psychology/overjustification.html): 3D child happily drawing (intrinsic glow). Then an external reward is introduced (gold star). The child now draws only for stars. When st... - [Peak-End Rule](https://unseel.com/psychology/peak-end-rule.html): 3D timeline of an experience showing pain/pleasure levels over time. The brain only remembers the peak moment and the ending. A longer pa... - [Piaget's Cognitive Stages](https://unseel.com/psychology/piaget-stages.html): 3D child growing through four cognitive stages. Sensorimotor: touching objects. Preoperational: symbolic play. Concrete: logical blocks. ... - [Placebo Effect](https://unseel.com/psychology/placebo-effect.html): 3D split comparison: one person takes a real pill (blue), another takes a sugar pill (white). Both show healing particles. The placebo gr... - [Positive vs Negative Reinforcement](https://unseel.com/psychology/positive-reinforcement.html): 3D two scenarios. Positive: pressing button adds a treat (green plus). Negative: pressing button removes an annoying sound (red minus gon... - [Priming Effect](https://unseel.com/psychology/priming.html): 3D brain being exposed to subtle word flashes (old, wrinkle, gray). Without awareness, the person then walks slower. Show how exposure to... - [Proactive & Retroactive Interference](https://unseel.com/psychology/proactive-interference.html): 3D memory shelves. Proactive: old books (red) prevent new books (blue) from being shelved. Retroactive: new books push old books off the ... - [Prosocial Behavior](https://unseel.com/psychology/prosocial-behavior.html): 3D person helping another up a cliff. Empathy rays connect their minds. Reward pathways light up in the helper's brain too — helping othe... - [Pygmalion Effect](https://unseel.com/psychology/rosenthal-effect.html): 3D classroom where teacher's expectations (glowing labels) literally lift or hold down students. High-expectation students rise and glow.... - [Reciprocity Principle](https://unseel.com/psychology/reciprocity.html): 3D two figures exchanging gifts. When one gives, the other feels compelled to give back — shown by a growing obligation meter. Free sampl... - [Repression](https://unseel.com/psychology/repression.html): 3D mind with three layers: conscious (bright surface), preconscious (dim middle), unconscious (dark depths). Traumatic memories are pushe... - [Schemas](https://unseel.com/psychology/schemas.html): 3D filing cabinet in the brain. New information arrives — if it fits an existing schema folder, it slides in (assimilation). If not, a ne... - [Selective Attention](https://unseel.com/psychology/selective-attention.html): 3D scene with multiple stimuli competing for attention. A spotlight beam focuses on one conversation while others fade. Then a gorilla wa... - [Self-Efficacy](https://unseel.com/psychology/self-efficacy.html): 3D person facing increasingly tall walls. With high self-efficacy (green glow), they attempt and clear each wall. With low self-efficacy ... - [Self-Serving Bias](https://unseel.com/psychology/self-serving-bias.html): 3D person receiving a trophy (success) — arrows point inward to personal ability. Same person receiving a failure — arrows point outward ... - [Sensory Adaptation](https://unseel.com/psychology/sensory-adaptation.html): 3D nose entering a smelly room. Initially the smell signal is huge (big wave). Over minutes, the signal decreases until the nose stops de... - [Serial Position Effect](https://unseel.com/psychology/serial-position.html): 3D list of items in a row. First items (primacy) and last items (recency) glow bright green, showing high recall. Middle items dim and fa... - [Signal Detection Theory](https://unseel.com/psychology/signal-detection.html): 3D radar screen with signal (target) and noise (static). Four outcomes animate: Hit (detect real signal, green), Miss (miss real signal, ... - [Sleeper Effect](https://unseel.com/psychology/sleeper-effect.html): 3D timeline. An untrustworthy source delivers a persuasive message — initially dismissed. Over time, the source is forgotten but the mess... - [Social Facilitation](https://unseel.com/psychology/social-facilitation.html): 3D runner on a track. Running alone: moderate speed. Running with audience: faster for simple tasks (green boost). But for complex tasks,... - [Social Identity Theory](https://unseel.com/psychology/social-identity.html): 3D groups of figures with different colors. Members of each group glow with in-group pride while viewing out-group members dimly. Show ca... - [Social Loafing](https://unseel.com/psychology/social-loafing.html): 3D rope-pulling experiment. One person pulls with full force (100%). In a group of 8, each person pulls with only 50% force. Individual e... - [Split-Brain Studies](https://unseel.com/psychology/split-brain.html): 3D brain splitting into two hemispheres. Left hemisphere processes language (text labels appear). Right hemisphere processes spatial/visu... - [Spotlight Effect](https://unseel.com/psychology/spotlight-effect.html): 3D person with an embarrassing stain on their shirt, surrounded by a giant spotlight. In reality, the bystanders barely notice — their at... - [Stanford Prison Experiment](https://unseel.com/psychology/stanford-prison.html): 3D prison cells with guards and prisoners. Guards gain power symbols (batons glow brighter) while prisoners shrink. Shows how assigned ro... - [Stroop Effect](https://unseel.com/psychology/stroop-effect.html): 3D words of colors written in mismatched ink colors (the word RED written in blue). A timer shows reaction time increasing dramatically w... - [Structuralism & Introspection](https://unseel.com/psychology/wundt-introspection.html): 3D recreation of Wundt's Leipzig lab. A subject reports their conscious experience while stimuli are presented. Internal observations are... - [Sunk Cost Fallacy](https://unseel.com/psychology/sunk-cost-fallacy.html): 3D pile of invested coins growing taller. Despite the project clearly failing (red warning signs), more coins keep being added because of... - [Theory of Mind](https://unseel.com/psychology/cognitive-development.html): 3D two children with Sally-Anne test. Sally puts a ball in a basket and leaves. Anne moves it to a box. Young children think Sally will l... - [Types of Conformity](https://unseel.com/psychology/conformity-types.html): 3D three levels of conformity depth. Compliance: surface agreement (thin shell). Identification: adopting group identity (thicker layer).... - [Working Memory Model](https://unseel.com/psychology/working-memory.html): 3D central executive directing traffic to two subsystems: phonological loop (cycling speech sounds in a loop) and visuospatial sketchpad ... - [Yerkes-Dodson Law](https://unseel.com/psychology/yerkes-dodson.html): 3D inverted-U curve. Too little arousal (left) shows a sleeping figure with low performance. Optimal arousal (peak) shows peak performanc... - [Zone of Proximal Development](https://unseel.com/psychology/zone-of-proximal.html): 3D concentric circles: inner circle (what child can do alone), middle ring glowing gold (ZPD — what child can do with help), outer circle... ## Medicine Health, disease, the body, and how medicine works. 203 concepts. - [Medicine index](https://unseel.com/medicine.html): All medicine concepts - [AAV Vector](https://unseel.com/medicine/aav-vector.html): Adeno-associated virus (AAV) — icosahedral 60-subunit capsid, ~25 nm, packages 4.7 kb ssDNA. Serotypes (AAV2 eye, AAV8 liver, AAV9 CNS) d... - [Acid-Base Balance](https://unseel.com/medicine/acid-base-balance.html): 3D pH scale with blood at 7.4. Bicarbonate buffer system neutralizes acids. Lungs regulate by adjusting CO2 (breathe faster = less acid).... - [Action Potential](https://unseel.com/medicine/action-potential.html): 3D axon cross-section showing ion channels. Sodium rushes in (depolarization), potassium rushes out (repolarization). The signal propagat... - [Acute Kidney Injury](https://unseel.com/medicine/acute-kidney-injury.html): AKI is a sudden drop in GFR. Pre-renal (60%) = poor perfusion. Intrinsic = ATN, GN. Post-renal = obstruction. KDIGO Stage 1: Cr ×1.5-1.9 ... - [Adrenal Insufficiency](https://unseel.com/medicine/adrenal-insufficiency.html): Cortisol deficiency from adrenal destruction (primary Addison's) or pituitary failure (secondary). Hyperpigmentation in primary from high... - [Agonists, Antagonists, Partial & Inverse Agonists](https://unseel.com/medicine/receptor-agonist-antagonist.html): Full agonists, partial agonists, antagonists, and inverse agonists explained. Efficacy from 100% (morphine) to 0% (naloxone) to negative ... - [Allergic Response](https://unseel.com/medicine/allergy-response.html): 3D allergen entering body. IgE antibodies on mast cells recognize it. Mast cells degranulate releasing histamine. Blood vessels dilate, m... - [Altitude Hypoxia](https://unseel.com/medicine/altitude-hypoxia.html): Altitude hypoxia is the oxygen starvation that happens as barometric pressure falls with elevation, lowering the partial pressure of oxyg... - [Alzheimer's Pathology](https://unseel.com/medicine/alzheimers-pathology.html): Alzheimer's disease is a progressive neurological disorder affecting 55 million people globally, characterized by the accumulation of amy... - [Anemia](https://unseel.com/medicine/anemia.html): 3D comparison: normal blood with many red cells vs anemic blood with fewer, paler cells. Less hemoglobin means less oxygen delivery. Symp... - [Antibiotic Resistance](https://unseel.com/medicine/antibiotic-resistance.html): 3D bacteria population. Antibiotic kills most (green die). One resistant mutant survives (red). It reproduces freely with no competition.... - [Antibody-Antigen Interaction](https://unseel.com/medicine/antibody-antigen.html): 3D Y-shaped antibody binding to a specific antigen on a pathogen surface like a lock and key. B cells produce antibodies. Show how each a... - [Apoptosis](https://unseel.com/medicine/apoptosis.html): 3D cell undergoing orderly self-destruction. Caspase enzymes activated, DNA fragmented, cell shrinks, membrane blebs form, apoptotic bodi... - [Arrhythmia Mechanisms](https://unseel.com/medicine/arrhythmia-mechanism.html): Every arrhythmia traces back to one of three electrical mechanisms: re-entry (a loop), automaticity (a rogue pacemaker), or triggered act... - [Arterial Blood Gas](https://unseel.com/medicine/blood-gas.html): 3D blood sample showing four key values. pH (7.35-7.45), PaO2 (oxygen level), PaCO2 (carbon dioxide level), HCO3 (bicarbonate). Interpret... - [Asthma Attack](https://unseel.com/medicine/asthma.html): 3D normal airway vs asthma airway. Smooth muscles constrict, lining swells with inflammation, excess mucus blocks airflow. Bronchodilator... - [Atherosclerosis](https://unseel.com/medicine/atherosclerosis.html): 3D artery gradually narrowing as cholesterol plaque builds on the walls over time. Blood flow becomes turbulent. Plaque rupture triggers ... - [ATP — Cell Energy](https://unseel.com/medicine/atp-energy.html): 3D ATP molecule with three phosphate groups. Breaking the bond between 2nd and 3rd phosphate releases energy for cell work. ADP + phospha... - [Atrial Fibrillation](https://unseel.com/medicine/atrial-fibrillation.html): Atrial fibrillation is the most common sustained arrhythmia — chaotic atrial wavefronts, no organized P waves, irregularly irregular puls... - [Autoimmune Disease](https://unseel.com/medicine/autoimmune.html): 3D immune cells attacking the body's own healthy cells. In rheumatoid arthritis: joints attacked. In Type 1 diabetes: pancreatic beta cel... - [B-Cell Class Switching](https://unseel.com/medicine/b-cell-class-switching.html): Activated B cells switch their antibody class — IgM to IgG, IgA, or IgE — while keeping the same V(D)J specificity. AID enzyme cuts switc... - [Bacterial Conjugation](https://unseel.com/medicine/bacterial-conjugation.html): Bacterial conjugation is direct gene transfer between bacteria through a pilus bridge — the main way antibiotic-resistance plasmids sprea... - [Baroreceptor Reflex](https://unseel.com/medicine/baroreceptor-reflex.html): The baroreceptor reflex is the fast negative-feedback loop that keeps blood pressure steady — stretch sensors in the carotid sinus and ao... - [Bilirubin Metabolism & Jaundice](https://unseel.com/medicine/bilirubin-metabolism.html): Bilirubin metabolism is how the body recycles heme from worn-out red cells into a yellow pigment, conjugates it in the liver, and excrete... - [Biofilm Infection](https://unseel.com/medicine/biofilm-infection.html): Biofilms are bacteria embedded in self-made polysaccharide matrix on surfaces. They tolerate 10-1000x more antibiotics than planktonic ce... - [Blood Circulation](https://unseel.com/medicine/blood-circulation.html): 3D heart pumping blood through a simplified circulatory loop. Show oxygenated blood (red) flowing from the heart through arteries to orga... - [Blood Clotting](https://unseel.com/medicine/platelet-clotting.html): 3D blood vessel with a cut. Platelets rush to the wound and stick together forming a plug. Coagulation cascade produces fibrin threads th... - [Blood Pressure](https://unseel.com/medicine/blood-pressure.html): 3D heart pumping blood through arteries. Systolic pressure when heart contracts (high), diastolic when relaxed (low). Show 120/80 as norm... - [Blood Types](https://unseel.com/medicine/blood-types.html): 3D red blood cells showing surface antigens. Type A has A antigens, Type B has B, AB has both, O has none. Show what happens when wrong b... - [Blood-Brain Barrier](https://unseel.com/medicine/blood-brain-barrier.html): 3D brain capillary with endothelial cells joined by tight junctions. Small lipid-soluble molecules (O2, CO2) pass freely. Large molecules... - [Bohr Effect](https://unseel.com/medicine/bohr-effect.html): The Bohr effect is the way rising CO2 and falling pH make hemoglobin release more oxygen, shifting the dissociation curve right so hard-w... - [Bone Fracture Healing](https://unseel.com/medicine/fracture-healing.html): 3D broken bone healing in stages. Hematoma forms (blood clot at break). Soft callus of cartilage bridges the gap. Hard callus of bone rep... - [Bone Remodeling](https://unseel.com/medicine/bone-remodeling.html): Bone remodeling is the lifelong cycle in which osteoclasts resorb old bone and osteoblasts build new matrix that mineralizes, rebuilding ... - [Bone Structure](https://unseel.com/medicine/bone-structure.html): 3D long bone cross-section. Outer compact bone (dense, strong), inner spongy bone (lightweight, absorbs shock), bone marrow (produces blo... - [Calcium Homeostasis](https://unseel.com/medicine/calcium-homeostasis.html): Calcium homeostasis is how the body holds blood calcium near 8.5-10.5 mg/dL using PTH, vitamin D, and calcitonin acting on bone, gut, and... - [CAR-T Cell Therapy](https://unseel.com/medicine/car-t-cell.html): CAR-T cell therapy explained — patient T cells engineered ex vivo to express a chimeric antigen receptor against CD19, infused back to de... - [Cardiac Cycle](https://unseel.com/medicine/cardiac-cycle.html): 3D heart going through one complete cardiac cycle. Atrial systole fills ventricles. Ventricular systole ejects blood. Diastole: heart rel... - [Cardiomyopathy Types](https://unseel.com/medicine/cardiomyopathy-types.html): Three cardiomyopathies, three distinct hearts. DCM: huge chamber, low EF. HCM: thick asymmetric septum, often genetic (1 in 500). Restric... - [Cell Membrane](https://unseel.com/medicine/cell-membrane.html): 3D phospholipid bilayer with hydrophilic heads facing out and hydrophobic tails inside. Channel proteins allow specific molecules through... - [Cellular Respiration](https://unseel.com/medicine/cellular-respiration.html): 3D mitochondria processing glucose. Glycolysis (cytoplasm) → Krebs cycle (matrix) → electron transport chain (inner membrane). 36 ATP pro... - [Cerebrospinal Fluid Circulation](https://unseel.com/medicine/cerebrospinal-fluid.html): Cerebrospinal fluid circulation is the constant production, flow, and reabsorption of CSF that bathes, cushions, and cleanses the brain a... - [Chemotherapy Mechanism](https://unseel.com/medicine/chemotherapy-mechanism.html): Chemotherapy uses cytotoxic drugs to kill cancer cells by targeting their most defining characteristic: rapid, uncontrolled cell division... - [Chronic Kidney Disease](https://unseel.com/medicine/chronic-kidney-disease.html): CKD = GFR <60 for ≥3 months. 5 stages. Diabetes #1 cause, hypertension #2. ~15% of US adults. Stage 5 (eGFR <15) = dialysis or transplant. - [Circadian Clock (SCN)](https://unseel.com/medicine/circadian-clock-scn.html): The circadian clock (SCN) is the brain's master pacemaker — ~20,000 neurons in the hypothalamus that run a ~24-hour clock-gene loop, rese... - [Circulatory Shock](https://unseel.com/medicine/shock.html): 3D cardiovascular system in three shock types. Hypovolemic: blood volume drops (bleeding). Cardiogenic: heart fails to pump effectively. ... - [Cirrhosis Pathology](https://unseel.com/medicine/cirrhosis-pathology.html): Cirrhosis = end-stage liver fibrosis with regenerative nodules. Portal pressure >10 mmHg = clinically significant. Varices, ascites, ence... - [Clonal Selection](https://unseel.com/medicine/clonal-selection.html): Clonal selection is the rule that an antigen finds the one lymphocyte whose receptor already fits, then drives it to divide into a clone ... - [Coagulation Cascade](https://unseel.com/medicine/coagulation-cascade.html): The coagulation cascade is a chain reaction of clotting factors that converts soluble fibrinogen into a fibrin mesh, sealing a wound. See... - [Complement Cascade](https://unseel.com/medicine/complement-cascade.html): Plasma complement proteins amplify in three pathways — classical, lectin, alternative — converging on C3 cleavage. C3a/C5a anaphylatoxins... - [Complement System](https://unseel.com/medicine/immune-complement.html): 3D complement proteins activating in a cascade on pathogen surface. C3b marks pathogen for destruction (opsonization). C5-C9 form the mem... - [COPD Pathophysiology](https://unseel.com/medicine/copd-pathophysiology.html): Chronic obstructive pulmonary disease combines airway inflammation with alveolar destruction. FEV1/FVC under 70% confirms airflow limitat... - [Coronary Circulation](https://unseel.com/medicine/coronary-circulation.html): Coronary circulation is the blood supply that feeds the heart muscle itself. Unusually, the left coronary fills during diastole, when the... - [Cortisol Circadian Rhythm](https://unseel.com/medicine/cortisol-circadian.html): The cortisol circadian rhythm is the daily cycle that peaks plasma cortisol just before waking and troughs near midnight, driven by the H... - [Countercurrent Multiplier](https://unseel.com/medicine/countercurrent-multiplier.html): The countercurrent multiplier is the loop-of-Henle mechanism that builds the kidney's medullary gradient, letting it concentrate urine up... - [CRISPR Therapy](https://unseel.com/medicine/crispr-therapy.html): CRISPR-Cas9 therapy explained — guide RNA + nuclease cut DNA at a chosen site, repair pathways finish the edit. Casgevy was the first FDA... - [Cytochrome P450 Drug Metabolism](https://unseel.com/medicine/cytochrome-p450-metabolism.html): Cytochrome P450 enzymes — especially CYP3A4 — oxidize about half of all marketed drugs in the liver. Genetic polymorphisms create poor, e... - [Cytokine Storm](https://unseel.com/medicine/cytokine-storm.html): A cytokine storm is a hyperactive and potentially fatal immune response where the body's signaling molecules, like IL-6 and TNF-α, ... - [Deep Vein Thrombosis](https://unseel.com/medicine/deep-vein-thrombosis.html): 3D leg vein with blood slowing down (Virchow's triad: stasis, endothelial injury, hypercoagulability). Clot forms in deep vein causing sw... - [Dehydration](https://unseel.com/medicine/dehydration.html): 3D body losing water through sweating, urination, and breathing. Blood volume drops, blood pressure falls, heart compensates by beating f... - [Diabetes Type 1 vs Type 2](https://unseel.com/medicine/diabetes-types.html): 3D comparison. Type 1: immune system destroys pancreatic beta cells, no insulin produced. Type 2: cells become resistant to insulin, gluc... - [Diabetic Ketoacidosis (DKA)](https://unseel.com/medicine/diabetes-ketoacidosis.html): DKA: severe insulin deficiency triggers lipolysis, ketogenesis, and metabolic acidosis. Glucose >250, pH <7.3, HCO₃ <18, anion gap >12. T... - [Dialysis Mechanism](https://unseel.com/medicine/dialysis-mechanism.html): Dialysis is a life-sustaining treatment for the 3.9 million people worldwide with end-stage renal disease, performing the vital filtratio... - [Digestive System](https://unseel.com/medicine/digestive-system.html): 3D digestive tract showing food traveling from mouth through esophagus, stomach (acid bath), small intestine (nutrient absorption with vi... - [DNA Structure](https://unseel.com/medicine/dna-structure.html): 3D double helix with sugar-phosphate backbone and base pair rungs. Adenine pairs with Thymine (two hydrogen bonds), Guanine pairs with Cy... - [Drug Bioavailability](https://unseel.com/medicine/drug-bioavailability.html): Drug bioavailability (F) is the fraction of an administered dose that reaches the systemic circulation intact. IV is 100%; oral drugs los... - [Drug Half-Life](https://unseel.com/medicine/drug-half-life.html): Drug half-life is the time for plasma concentration to fall by 50%. t½ = 0.693 × Vd / CL. 4-5 half-lives reach steady state and clear ~97... - [Drug Tolerance & Dependence](https://unseel.com/medicine/drug-tolerance-dependence.html): Drug tolerance is when the same dose stops working because the body adapts to a drug; dependence is when the adapted system needs the dru... - [Drug-Receptor Interaction](https://unseel.com/medicine/drug-receptor.html): 3D cell surface receptor with binding pocket. Agonist drug fits perfectly and activates receptor (like the natural molecule). Antagonist ... - [ECG / EKG Reading](https://unseel.com/medicine/ecg-heart.html): 3D heart with electrical conduction system. SA node fires (P wave = atrial contraction), signal travels to AV node then ventricles (QRS =... - [Edema](https://unseel.com/medicine/edema.html): 3D capillary with Starling forces. Hydrostatic pressure pushes fluid out. Oncotic pressure pulls fluid back in. When imbalanced — too muc... - [Electrolyte Balance](https://unseel.com/medicine/electrolyte-balance.html): 3D cell with ion channels. Sodium high outside, potassium high inside — maintained by Na/K pump (3 Na out, 2 K in). Calcium triggers musc... - [Embryonic Development](https://unseel.com/medicine/pregnancy-development.html): 3D fertilization: sperm meets egg, zygote divides into blastocyst, implants in uterine wall. Embryo develops organ systems. By 8 weeks al... - [Emphysema](https://unseel.com/medicine/emphysema.html): Emphysema is the permanent enlargement of alveoli with destruction of their walls. Lost elastic recoil produces air trapping and barrel c... - [Endocrine System](https://unseel.com/medicine/hormone-system.html): 3D body with major endocrine glands highlighted: pituitary, thyroid, adrenals, pancreas, gonads. Hormones travel through blood to target ... - [Endotoxin (LPS)](https://unseel.com/medicine/endotoxin-lps.html): Endotoxin is lipopolysaccharide (LPS), the molecule in the outer membrane of gram-negative bacteria that, sensed by TLR4, unleashes the c... - [Enterohepatic Circulation](https://unseel.com/medicine/enterohepatic-circulation.html): Enterohepatic circulation is the recycling loop in which the liver secretes bile acids into the gut, the ileum reabsorbs ~95%, and the po... - [Enzyme Kinetics (Michaelis-Menten)](https://unseel.com/medicine/enzyme-kinetics-mm.html): Michaelis-Menten kinetics describes enzyme rate v = Vmax·[S]/(Km + [S]). Km is substrate concentration at half Vmax. Foundation of drug-e... - [Epileptic Seizure](https://unseel.com/medicine/epileptic-seizure.html): An epileptic seizure is excessive synchronous neuronal firing. Focal vs generalized onset. EEG signatures of spike-wave. Status epileptic... - [Erythropoiesis](https://unseel.com/medicine/erythropoiesis.html): Erythropoiesis is how bone marrow makes ~2 million red blood cells per second, driven by the hormone EPO that the kidneys release in resp... - [Eye Anatomy](https://unseel.com/medicine/eye-anatomy.html): 3D eye cross-section. Light enters through cornea, passes through pupil (iris adjusts size), lens focuses onto retina. Rod and cone cells... - [Fetal Circulation](https://unseel.com/medicine/fetal-circulation.html): Fetal circulation is the pattern of blood flow before birth, in which oxygen comes from the placenta and three shunts bypass the unused l... - [Fibrinolysis](https://unseel.com/medicine/blood-clot-dissolve.html): 3D blood clot being dissolved. Tissue plasminogen activator (tPA) converts plasminogen to plasmin. Plasmin cuts fibrin threads, breaking ... - [Fibrosis](https://unseel.com/medicine/fibrosis-scarring.html): Fibrosis is the buildup of excess collagen scar tissue when repeated injury keeps myofibroblasts active, stiffening organs and crowding o... - [First-Pass Metabolism](https://unseel.com/medicine/first-pass-metabolism.html): First-pass metabolism explained — orally absorbed drug travels through the portal vein to the liver before reaching systemic circulation.... - [Frank–Starling Mechanism](https://unseel.com/medicine/frank-starling-mechanism.html): The Frank–Starling mechanism is the heart's intrinsic rule: the more it fills, the harder it pumps. Greater end-diastolic volume stretche... - [Gallbladder & Bile](https://unseel.com/medicine/gallbladder.html): 3D gallbladder storing bile from liver. When fatty food enters small intestine, gallbladder contracts releasing bile. Bile salts emulsify... - [Gastric Acid Secretion](https://unseel.com/medicine/gastric-acid-secretion.html): Gastric acid secretion is how parietal cells pump protons into the stomach to reach pH 1.5, driven by histamine, gastrin, and acetylcholi... - [Gene Therapy](https://unseel.com/medicine/gene-therapy.html): Gene therapy delivers a working gene to replace a defective one. AAV, lentivirus, and LNP-mRNA carry the payload. Zolgensma cures spinal ... - [Glomerulonephritis](https://unseel.com/medicine/glomerulonephritis.html): Glomerular inflammation. Nephritic = hematuria, HTN, RBC casts. Nephrotic = proteinuria >3.5 g/day. Post-strep peaks 7-14 days post-throa... - [Glucagon Counter-Regulation](https://unseel.com/medicine/glucagon-counterregulation.html): Glucagon counter-regulation is the body's emergency response to falling blood sugar: pancreatic alpha cells release glucagon, driving the... - [Granuloma Formation](https://unseel.com/medicine/granuloma-formation.html): A granuloma is an organized cluster of macrophages the immune system builds to wall off pathogens or debris it cannot destroy, the hallma... - [Graves' Hyperthyroidism](https://unseel.com/medicine/hyperthyroidism-graves.html): Graves' disease: autoantibodies against the TSH receptor stimulate the thyroid into overdrive. Heat intolerance, weight loss, tachycardia... - [Growth Hormone Axis](https://unseel.com/medicine/growth-hormone-axis.html): The growth hormone axis is the hypothalamus–pituitary–liver loop that releases GH in nightly pulses, drives IGF-1, and builds bone and mu... - [Gut Microbiome](https://unseel.com/medicine/gi-microbiome.html): 3D intestinal lining covered with diverse bacteria colonies. Good bacteria help digest food, produce vitamins, train immune system, preve... - [Hashimoto's Hypothyroidism](https://unseel.com/medicine/hypothyroidism-hashimoto.html): Hashimoto's thyroiditis: lymphocytes destroy thyroid follicles, anti-TPO antibodies signal autoimmunity. Cold intolerance, weight gain, f... - [Heart Failure](https://unseel.com/medicine/heart-failure.html): Heart failure is a chronic condition affecting 64 million people globally, where the heart becomes unable to pump enough blood to meet th... - [Heart Valves](https://unseel.com/medicine/heart-valves.html): Heart valves are four one-way doors that keep blood flowing forward through the heart. See how the mitral, tricuspid, aortic, and pulmona... - [Hemolysis](https://unseel.com/medicine/hemolysis.html): Hemolysis is the premature destruction of red blood cells, releasing hemoglobin and bilirubin faster than the marrow can replace them. Se... - [Hepatitis Types](https://unseel.com/medicine/hepatitis-types.html): Five hepatitis viruses, five biologies. A & E fecal-oral and acute. B & C blood-borne, chronic. D needs B. HCV cure 95%+ with 8-12 weeks ... - [HER2+ Breast Cancer](https://unseel.com/medicine/breast-cancer-her2.html): HER2-positive breast cancer overamplifies the HER2 oncogene, driving uncontrolled growth. Trastuzumab (Herceptin) blocks the receptor and... - [HIV Infection Cycle](https://unseel.com/medicine/hiv-infection.html): 3D HIV virus binding to CD4 receptor on T cell. Viral RNA enters, reverse transcriptase converts to DNA, integrates into host genome. New... - [How Anesthesia Works](https://unseel.com/medicine/anesthesia.html): 3D nerve with sodium channels. Local anesthetic blocks sodium channels — no action potential, no pain signal. General anesthesia affects ... - [How Cancer Develops](https://unseel.com/medicine/cancer-cells.html): 3D normal cells dividing in controlled fashion. A mutation occurs in a growth gene. The mutant cell ignores stop signals and divides unco... - [How CPR Works](https://unseel.com/medicine/cpr-mechanism.html): 3D torso showing CPR. Chest compressions squeeze heart between sternum and spine, pushing blood to brain and organs. Rescue breaths deliv... - [How Fever Works](https://unseel.com/medicine/fever-mechanism.html): 3D hypothalamus as body's thermostat set at 37°C. Infection releases pyrogens that raise the set point to 39°C. Body shivers to generate ... - [How Hearing Works](https://unseel.com/medicine/ear-hearing.html): 3D ear showing sound waves entering ear canal, vibrating eardrum, transmitted through three ossicles (hammer, anvil, stirrup) to cochlea.... - [How Insulin Works](https://unseel.com/medicine/insulin-mechanism.html): 3D insulin binding to cell surface receptor. Triggers GLUT4 glucose transporters to move to cell membrane. Transporters open like gates, ... - [How Vaccines Work](https://unseel.com/medicine/vaccination.html): 3D vaccine injecting weakened pathogen. Immune system responds: T cells activate, B cells produce antibodies, memory cells form. Second e... - [Human Heart](https://unseel.com/medicine/human-heart.html): 3D heart with four chambers pumping blood. Atria contract filling ventricles, then ventricles contract pushing blood to lungs and body. V... - [Immune Memory](https://unseel.com/medicine/immune-memory.html): 3D comparison. First infection: slow immune response over 7-10 days, few antibodies. Memory cells form. Second infection with same pathog... - [Immunoglobulin Classes](https://unseel.com/medicine/immunoglobulin-classes.html): Immunoglobulin classes are the five antibody isotypes — IgG, IgM, IgA, IgE, and IgD — defined by their heavy chains, each shaped for a di... - [Incretin Effect (GLP-1)](https://unseel.com/medicine/incretin-glp1.html): The incretin effect is the boost in insulin release that follows oral glucose compared with the same glucose given intravenously — driven... - [Inflammation Response](https://unseel.com/medicine/inflammation.html): 3D tissue injury releasing chemical signals. Blood vessels dilate (redness, heat), become permeable (swelling). White blood cells rush to... - [Interferon Response](https://unseel.com/medicine/interferon-response.html): Type I interferons (α, β) released by virus-infected cells. Bind IFNAR on neighbors → JAK/STAT signaling → hundreds of ISGs induced 100-f... - [Iron Metabolism & Hepcidin](https://unseel.com/medicine/iron-metabolism-hepcidin.html): Iron metabolism is the tightly regulated cycle of iron uptake, transport, and storage, governed by the liver hormone hepcidin, which cont... - [Ischemia–Reperfusion Injury](https://unseel.com/medicine/ischemia-reperfusion.html): Ischemia-reperfusion injury is the paradoxical tissue damage that occurs when blood flow returns to oxygen-starved tissue, driven by a bu... - [Kidney Filtration](https://unseel.com/medicine/kidney-filtration.html): 3D kidney cross-section zooming into a nephron. Blood enters glomerulus under pressure, filtrate passes through tubules where useful subs... - [Left Ventricular Hypertrophy](https://unseel.com/medicine/left-ventricular-hypertrophy.html): LVH is myocardial thickening from chronic pressure or volume overload. LV mass index thresholds: > 115 g/m² men, > 95 g/m² women. Indepen... - [Lipid Nanoparticle Vaccine](https://unseel.com/medicine/lipid-nanoparticle-vaccine.html): Lipid nanoparticles (LNPs) carry mRNA into cells using four lipids — ionizable, helper (DSPC), cholesterol, PEG. The platform behind Pfiz... - [Liver Functions](https://unseel.com/medicine/liver-function.html): 3D liver receiving blood from digestive system. Detoxifies harmful substances, produces bile for fat digestion, stores glycogen, processe... - [Long QT Syndrome](https://unseel.com/medicine/long-qt-syndrome.html): Long QT syndrome prolongs ventricular repolarization on ECG (QTc > 500 ms), risking Torsades de Pointes polymorphic VT and sudden cardiac... - [Long-Term Potentiation](https://unseel.com/medicine/long-term-potentiation.html): Long-term potentiation is the lasting strengthening of a synapse after correlated activity — the cellular basis of learning and memory, d... - [Lymph Node Architecture](https://unseel.com/medicine/lymph-node-architecture.html): Lymph node architecture is the layered design — cortex, paracortex, medulla — that lets a bean-sized organ screen lymph and stage immune ... - [Lymphatic System](https://unseel.com/medicine/lymphatic-system.html): 3D body with lymphatic vessels collecting excess tissue fluid. Lymph passes through lymph nodes where white blood cells filter pathogens.... - [Mast Cell Degranulation](https://unseel.com/medicine/mast-cell-degranulation.html): Tissue mast cells armed with IgE on FcεRI release histamine, tryptase, and leukotrienes within seconds when allergen crosslinks two adjac... - [Meiosis](https://unseel.com/medicine/meiosis.html): 3D cell undergoing two divisions to produce four unique gametes. Crossing over during meiosis I swaps genetic material between homologous... - [Mendelian Inheritance](https://unseel.com/medicine/genetic-inheritance.html): 3D Punnett square showing parent alleles combining. Dominant allele (A) masks recessive (a). Show AA, Aa (carriers), aa outcomes. Demonst... - [Menstrual Cycle](https://unseel.com/medicine/menstrual-cycle.html): The menstrual cycle is a complex 28-day hormonal rhythm that prepares the female body for potential pregnancy, driven by a precise coordi... - [MHC Antigen Presentation](https://unseel.com/medicine/mhc-antigen-presentation.html): MHC class I on every nucleated cell shows intracellular peptides (8-10 aa) to CD8 T cells; MHC class II on antigen-presenting cells shows... - [Migraine Mechanism](https://unseel.com/medicine/migraine-mechanism.html): Migraine begins with cortical spreading depression, activates the trigeminovascular system, and floods the meninges with CGRP. New monocl... - [Mitosis](https://unseel.com/medicine/mitosis.html): Mitosis is the process of cell division where a single somatic cell replicates its DNA and divides into two genetically identical daughte... - [MRI Scanning](https://unseel.com/medicine/mri-scan.html): 3D patient in MRI tube. Strong magnetic field aligns hydrogen atoms in body. Radio pulse knocks them out of alignment. As they realign, t... - [mRNA Translation](https://unseel.com/medicine/mrna-translation-medical.html): mRNA translation explained — ribosomes read codons 5' to 3', tRNAs deliver amino acids, peptide bonds form at ~6 aa/sec. Therapeutic mRNA... - [Multiple Sclerosis (MS)](https://unseel.com/medicine/multiple-sclerosis.html): Multiple Sclerosis (MS) is an autoimmune disorder affecting 2.8 million people globally, where the immune system mistakenly attacks the p... - [Muscle Contraction](https://unseel.com/medicine/muscular-contraction.html): 3D muscle fiber zooming into sarcomere level. Myosin heads grab actin filaments and pull them inward, shortening the sarcomere. Calcium t... - [Muscle Fiber Types](https://unseel.com/medicine/muscle-fiber-types.html): Muscle fiber types are the slow-twitch (Type I) and fast-twitch (Type IIa, IIx) cells that make up skeletal muscle, differing in speed, f... - [Myocardial Infarction](https://unseel.com/medicine/myocardial-infarction.html): A myocardial infarction is the death of heart muscle when a coronary artery is blocked, usually by a ruptured plaque and clot — a heart a... - [Natural Killer Cell](https://unseel.com/medicine/natural-killer-cell.html): NK cells are innate lymphocytes that kill virus-infected and tumor cells without prior sensitization. Inhibitory KIRs read MHC I — "missi... - [Necrosis](https://unseel.com/medicine/necrosis-types.html): Necrosis is uncontrolled, traumatic cell death in which the cell swells, ruptures, and spills its contents into tissue — triggering infla... - [Negative Feedback Loop](https://unseel.com/medicine/hormonal-feedback.html): 3D feedback loop: hypothalamus releases releasing hormone → pituitary releases stimulating hormone → target gland produces hormone → high... - [Nervous System](https://unseel.com/medicine/nervous-system.html): 3D brain connected to spinal cord with branching nerves reaching all body parts. Show a signal traveling from finger (touch) up through n... - [Neuromuscular Junction](https://unseel.com/medicine/neuromuscular-junction.html): 3D motor neuron terminal meeting muscle fiber. Action potential arrives, acetylcholine released into synaptic cleft, binds receptors on m... - [Neuron Structure](https://unseel.com/medicine/neuron-structure.html): 3D neuron with dendrites receiving signals, cell body processing, axon transmitting (with myelin sheath segments), and synaptic terminal ... - [Neurotransmitter Reuptake](https://unseel.com/medicine/neurotransmitter-reuptake.html): Neurotransmitter reuptake is the transporter-driven vacuuming of neurotransmitter out of the synaptic cleft back into the neuron, ending ... - [Opsonization](https://unseel.com/medicine/opsonization.html): Antibodies and complement C3b coat pathogens to mark them for destruction. Phagocyte Fc and complement receptors latch on; engulfment spe... - [Osmosis](https://unseel.com/medicine/osmosis.html): 3D semipermeable membrane with water molecules passing from low solute concentration to high solute concentration. Show hypotonic (cell s... - [Oxygen Therapy](https://unseel.com/medicine/oxygen-therapy.html): 3D patient receiving oxygen through escalating delivery methods. Nasal cannula (1-6L, 24-44% O2). Simple mask (6-10L, 35-60%). Non-rebrea... - [Oxygen Transport](https://unseel.com/medicine/oxygen-transport.html): 3D red blood cell in lung capillary loading oxygen onto hemoglobin (4 O2 per hemoglobin). Travels through arteries to tissue capillaries.... - [Oxygen-Hemoglobin Dissociation](https://unseel.com/medicine/hemoglobin-oxygen.html): 3D hemoglobin molecule binding oxygen molecules one by one. S-shaped dissociation curve shows cooperative binding. Low pH (exercising mus... - [Pain Pathway](https://unseel.com/medicine/pain-pathway.html): 3D nociceptor (pain receptor) in skin detecting tissue damage. Signal travels via A-delta fibers (sharp, fast) and C fibers (dull, slow) ... - [Pancreas — Dual Function](https://unseel.com/medicine/pancreas-function.html): 3D pancreas showing dual function. Endocrine: islets of Langerhans — beta cells produce insulin (lowers glucose), alpha cells produce glu... - [Pancreatitis](https://unseel.com/medicine/pancreatitis.html): Acute pancreatitis: trypsinogen activates inside the pancreas, digesting the gland itself. Gallstones and alcohol cause ~70% of cases. Li... - [Parkinson's Disease & Dopamine](https://unseel.com/medicine/parkinsons-dopamine.html): Parkinson's disease destroys dopaminergic neurons in the substantia nigra. Motor symptoms appear after 60-80% loss. Lewy bodies (α-synucl... - [PCR — Polymerase Chain Reaction](https://unseel.com/medicine/pcr.html): 3D DNA going through PCR cycles. Denature at 95°C: strands separate. Anneal at 55°C: primers bind. Extend at 72°C: polymerase copies. Eac... - [Peptic Ulcer](https://unseel.com/medicine/peptic-ulcer.html): 3D stomach lining with protective mucus layer. H. pylori bacteria burrow through mucus. Acid erodes the exposed stomach wall creating an ... - [Phagocytosis](https://unseel.com/medicine/phagocytosis.html): Neutrophils and macrophages engulf large particles through receptor binding, actin reorganization, pseudopod extension, phagosome formati... - [Pharmacokinetics (ADME)](https://unseel.com/medicine/pharmacokinetics-adme.html): Pharmacokinetics is the study of how the body processes a drug, categorized by the four ADME stages: Absorption, Distribution, Metabolism... - [Pneumonia Types](https://unseel.com/medicine/pneumonia-types.html): Pneumonia type drives empiric antibiotic choice. CAP is dominated by Strep pneumo and Mycoplasma; HAP by Gram negatives and MRSA; aspirat... - [Prion Disease](https://unseel.com/medicine/prion-disease.html): Prion disease in detail — PrP^Sc converts normal PrP^C into more misfolded copies. CJD, vCJD, kuru, BSE. Infectious without DNA or RNA, h... - [Protein Synthesis](https://unseel.com/medicine/protein-synthesis.html): 3D DNA unzipping for transcription: mRNA copy made. mRNA travels to ribosome. tRNA brings amino acids matching codons. Amino acid chain f... - [Pulmonary Edema](https://unseel.com/medicine/pulmonary-edema.html): Pulmonary edema is fluid in the alveoli. Cardiogenic edema follows left heart failure (PCWP >18 mmHg); non-cardiogenic edema is ARDS, an ... - [Pulmonary Embolism](https://unseel.com/medicine/pulmonary-embolism.html): Pulmonary embolism is a clot — usually from a DVT in the leg — that travels through the venous system, the right heart, and lodges in a p... - [Pulmonary Surfactant](https://unseel.com/medicine/pulmonary-surfactant.html): Pulmonary surfactant is the lipid-protein film that type II pneumocytes secrete to lower alveolar surface tension, keeping small alveoli ... - [Red Blood Cells](https://unseel.com/medicine/red-blood-cell.html): 3D biconcave red blood cells flowing through a blood vessel. Hemoglobin molecules inside pick up oxygen in the lungs (turn red) and relea... - [Reflex Arc](https://unseel.com/medicine/reflex-arc.html): 3D hand touching hot surface. Pain receptor fires, sensory neuron carries signal to spinal cord, relay neuron connects to motor neuron, h... - [Renin–Angiotensin–Aldosterone System](https://unseel.com/medicine/raas-system.html): The renin–angiotensin–aldosterone system (RAAS) is the hormone cascade that defends blood pressure: low renal perfusion releases renin, g... - [Respiratory System](https://unseel.com/medicine/respiratory-system.html): 3D lungs expanding during inhalation. Zoom into alveoli where oxygen crosses into blood capillaries and CO2 crosses out. Diaphragm contra... - [Rod and Cone Cells](https://unseel.com/medicine/photoreceptors.html): 3D retina cross-section with rod cells (dim light, black/white, peripheral) and cone cells (bright light, color — red/green/blue). Rods c... - [Saltatory Conduction](https://unseel.com/medicine/saltatory-conduction.html): Saltatory conduction is how a nerve impulse leaps from one node of Ranvier to the next along a myelinated axon, boosting conduction veloc... - [Sepsis](https://unseel.com/medicine/sepsis.html): Sepsis is a life-threatening medical emergency caused by the body's extreme response to an infection, affecting 49 million people annuall... - [Sepsis & Septic Shock Cascade](https://unseel.com/medicine/sepsis-shock-cascade.html): The cascade from infection to septic shock: cytokines, NO-driven vasodilation, capillary leak, MAP collapse below 65, multi-organ failure... - [Sinoatrial Node Automaticity](https://unseel.com/medicine/sa-node-automaticity.html): Sinoatrial node automaticity is the heart's ability to generate its own electrical beats without nerves — a slow diastolic drift driven b... - [Skeletal System](https://unseel.com/medicine/skeletal-system.html): 3D skeleton with labeled major bones. Show different joint types: ball-and-socket (hip), hinge (knee), pivot (neck). Demonstrate how bone... - [Skin Layers](https://unseel.com/medicine/skin-layers.html): 3D skin cross-section with three layers. Epidermis (outer barrier, dead cells shed). Dermis (collagen, blood vessels, nerves, hair follic... - [Sleep Stages](https://unseel.com/medicine/sleep-stages.html): 3D brain with EEG waves showing sleep stages. Awake: fast beta waves. Stage 1: theta waves. Stage 2: sleep spindles. Stage 3: slow delta ... - [Spermatogenesis](https://unseel.com/medicine/spermatogenesis.html): Spermatogenesis is the 64-day process by which diploid stem cells in the testis divide by mitosis and meiosis and reshape into haploid, m... - [Spinal Cord](https://unseel.com/medicine/spinal-cord.html): 3D spinal cord cross-section. Gray matter (butterfly shape, cell bodies) processes signals. White matter (myelinated axons) carries signa... - [Spirometry](https://unseel.com/medicine/spirometry.html): Spirometry is a breathing test that measures how much air you can forcibly exhale and how fast. It diagnoses asthma, COPD, and restrictiv... - [Stem Cells](https://unseel.com/medicine/stem-cells.html): 3D stem cell dividing and differentiating into different cell types: neuron, muscle cell, red blood cell, bone cell. Embryonic stem cells... - [Stress Hormones](https://unseel.com/medicine/hormones-stress.html): 3D HPA axis: hypothalamus releases CRH → pituitary releases ACTH → adrenal cortex releases cortisol. Adrenal medulla releases adrenaline.... - [Stroke — Ischemic vs Hemorrhagic](https://unseel.com/medicine/stroke-types.html): 3D brain showing two stroke types. Ischemic: blood clot blocks artery, brain tissue dies from oxygen lack. Hemorrhagic: blood vessel rupt... - [Swallowing & Peristalsis](https://unseel.com/medicine/swallowing-peristalsis.html): Swallowing and peristalsis are the coordinated muscular waves that move a food bolus from mouth to stomach in 8-10 seconds, even against ... - [Synaptic Transmission](https://unseel.com/medicine/synapse-transmission.html): 3D synaptic cleft between two neurons. Action potential arrives, calcium enters, vesicles fuse releasing neurotransmitters. They cross th... - [T-Cell Activation](https://unseel.com/medicine/t-cell-activation.html): A naive T cell needs three signals to activate: TCR-MHC binding, CD28-B7 costimulation, and cytokines like IL-2. Without all three, the c... - [Tachyphylaxis](https://unseel.com/medicine/tachyphylaxis.html): Tachyphylaxis is the sharp drop in drug response within hours of repeated dosing. Nitrate tolerance, receptor desensitization, and transm... - [The Placebo Effect](https://unseel.com/medicine/placebo-effect.html): The placebo effect is a documented medical phenomenon where an inert treatment produces real physiological benefits driven by a patient's... - [Therapeutic Index](https://unseel.com/medicine/therapeutic-index.html): The therapeutic index is the ratio of a drug's toxic dose to its effective dose (TD50/ED50). A high index means a wide safety margin; a l... - [Thermoregulation](https://unseel.com/medicine/thermoregulation.html): Thermoregulation is how the hypothalamus holds core body temperature near 37°C, switching on sweating and vasodilation when hot, shiverin... - [Thyroid Function](https://unseel.com/medicine/thyroid-function.html): 3D thyroid gland in neck producing T3 and T4 hormones. They regulate metabolism: too much (hyperthyroidism) = fast heart, weight loss, an... - [Toll-Like Receptor](https://unseel.com/medicine/toll-like-receptor.html): TLRs are pattern-recognition receptors. TLR4 detects bacterial LPS at picomolar levels; TLR3/7/8/9 sit in endosomes sensing viral nucleic... - [Tubular Reabsorption](https://unseel.com/medicine/tubular-reabsorption.html): Tubular reabsorption is how the nephron reclaims ~99% of the 180 L/day it filters — pulling glucose, sodium, and water back into the bloo... - [Types of Genetic Mutations](https://unseel.com/medicine/genetic-mutation.html): 3D DNA strand showing mutation types. Point mutation: one base changed (sickle cell). Insertion: extra base added. Deletion: base removed... - [Types of Immune Cells](https://unseel.com/medicine/immune-cells.html): 3D immune cell lineup. Innate: neutrophils (first responders), macrophages (engulfers), NK cells (kill infected cells). Adaptive: T cells... - [Types of Joints](https://unseel.com/medicine/joint-types.html): 3D showcase of four joint types. Ball-and-socket (hip/shoulder): full rotation. Hinge (elbow/knee): one plane. Pivot (neck): rotation aro... - [Urinalysis](https://unseel.com/medicine/urinalysis.html): 3D urine sample being tested. Normal: water, urea, creatinine, electrolytes. Abnormal findings: glucose (diabetes), protein (kidney damag... - [Ventilation-Perfusion Matching](https://unseel.com/medicine/ventilation-perfusion.html): 3D lung alveolus with air on one side and blood capillary on the other. Normal V/Q: good air and blood flow = efficient gas exchange. V/Q... - [Ventricular Tachycardia](https://unseel.com/medicine/ventricular-tachycardia.html): Ventricular tachycardia is a rapid wide-QRS rhythm from a ventricular focus. Sustained VT (>30 sec) often degenerates to VF. ICDs prevent... - [Vestibular System](https://unseel.com/medicine/vestibular-balance.html): The vestibular system is the inner-ear balance organ — three semicircular canals sense rotation and two otolith organs sense gravity and ... - [Viral Latency](https://unseel.com/medicine/viral-latency.html): Viral latency is the dormant state in which a virus parks its genome inside a host cell, makes almost no proteins, evades immunity, and c... - [Virus Replication Cycle](https://unseel.com/medicine/virus-replication.html): 3D virus attaching to host cell surface receptor. Injects genetic material. Hijacks cell machinery to copy viral DNA and build new virus ... - [White Blood Cells](https://unseel.com/medicine/white-blood-cell.html): 3D white blood cell detecting and engulfing a bacterium through phagocytosis. Show different types: neutrophils (first responders), macro... - [Wound Healing](https://unseel.com/medicine/wound-healing.html): 3D skin wound healing in four phases. Hemostasis: clot forms. Inflammation: immune cells clean debris. Proliferation: new tissue grows, b... - [X-Ray Imaging](https://unseel.com/medicine/xray-imaging.html): 3D X-ray beam passing through body. Dense structures (bone, metal) absorb X-rays and appear white. Soft tissue absorbs less (gray). Air a... ## Linguistics Language, syntax, phonology, and communication. 100 concepts. - [Linguistics index](https://unseel.com/linguistics.html): All linguistics concepts - [Agglutination](https://unseel.com/linguistics/agglutination.html): Turkish 'evlerimizden' = ev + ler + imiz + den — 'from our houses' in one word, with each piece a clean block of meaning. Finnish, Japane... - [Alphabet · Abjad · Abugida](https://unseel.com/linguistics/alphabet-vs-abjad-abugida.html): Latin alphabet writes all consonants and vowels. Arabic abjad writes mostly consonants. Devanagari abugida marks vowels as diacritics on ... - [Anaphora and Cataphora](https://unseel.com/linguistics/anaphora-cataphora.html): Anaphora is a referring expression whose interpretation depends on something earlier in the discourse; cataphora reverses the direction, ... - [Arbitrariness of the Linguistic Sign](https://unseel.com/linguistics/arbitrariness-of-sign.html): The arbitrariness of the linguistic sign is the principle that the connection between a word's sound shape and its meaning is conventiona... - [Aspiration](https://unseel.com/linguistics/aspiration.html): Aspiration is the audible puff of air [ʰ] released after a voiceless stop before the following vowel begins. Phonetically it is a long vo... - [Assimilation](https://unseel.com/linguistics/assimilation.html): 'in-' + 'possible' becomes 'impossible' — the /n/ copies the bilabial /p/ next to it. The mouth's shortcut becomes the language's rule. - [Binding Theory](https://unseel.com/linguistics/binding-theory.html): Binding theory is the part of generative grammar that states the structural conditions under which one noun phrase can corefer with anoth... - [Broca & Wernicke](https://unseel.com/linguistics/broca-wernicke.html): Broca's area (frontal) — damage here wrecks speech production. Wernicke's area (temporal) — damage here wrecks comprehension. Connected b... - [Classifier Systems](https://unseel.com/linguistics/classifier-systems.html): In Mandarin you cannot say "three books." You must say 三本书 (sān-běn-shū) — "three-volume-book", where 本 (běn) is a numeral classifier pic... - [Clitics](https://unseel.com/linguistics/clitics.html): A clitic is a morpheme that behaves syntactically like an independent word but phonologically like an affix — it cannot bear stress on it... - [Coarticulation](https://unseel.com/linguistics/coarticulation.html): When you say 'key', your tongue is already pulled forward for the 'ee' while making the 'k'. Same letter in 'coo' has the tongue pulled b... - [Code-Switching](https://unseel.com/linguistics/code-switching.html): 'Necesito ir to the store to buy leche.' Spanish, English, Spanish — no pause, no errors. Both grammars intact. Not sloppy; a distinctive... - [Cohesion vs Coherence](https://unseel.com/linguistics/cohesion-vs-coherence.html): Cohesion is the visible web of pronouns, conjunctions, and lexical chains that ties a text together at the surface. Coherence is the unde... - [Comparative Reconstruction](https://unseel.com/linguistics/comparative-reconstruction.html): English father, German Vater, Latin pater, Sanskrit pitā — too similar to be coincidence. Linguists line them up and reconstruct the unre... - [Compounding](https://unseel.com/linguistics/compounding.html): Two words collide, fuse into a third. 'sun' + 'flower' = sunflower. Not a sun, not a flower — a specific new thing. German does it with w... - [Constituency](https://unseel.com/linguistics/constituency.html): Words aren't flat — they clump into phrases, phrases clump into bigger phrases. 'the big dog' is one unit you can replace with 'it'. That... - [Construction Grammar (Goldberg)](https://unseel.com/linguistics/construction-grammar.html): Construction Grammar is a family of theories holding that grammar is an inventory of constructions — pairings of form with meaning at eve... - [Control Constructions](https://unseel.com/linguistics/control-constructions.html): A control construction has a non-finite complement clause whose missing subject is silently filled by an argument of the matrix verb. In ... - [Creolization](https://unseel.com/linguistics/creolization.html): Two groups need to trade, improvise a pidgin. Children grow up hearing it, invent grammar on the fly, and a creole is born in a single ge... - [Critical Period](https://unseel.com/linguistics/critical-period.html): A baby masters any language effortlessly. By puberty, the window closes. Adults can still learn languages — sometimes brilliantly — but r... - [Cuneiform Evolution](https://unseel.com/linguistics/cuneiform-evolution.html): Around 3200 BCE in Sumer, scribes pressed pictures into clay. Over centuries, curves flattened into wedge strokes. By 2500 BCE the shape ... - [Deixis](https://unseel.com/linguistics/deixis.html): 'Here.' 'Now.' 'You.' Words with no fixed meaning — they anchor to whoever is speaking, wherever, and whenever. Language's built-in GPS. - [Dependency Grammar](https://unseel.com/linguistics/dependency-grammar.html): Another way to see sentence structure — arrows from each word to the word it depends on. The verb is the root; every other word hangs off... - [Dialect Continuum](https://unseel.com/linguistics/dialect-continuum.html): From Lisbon to Rome you can walk a chain where every neighbor understands every other. Portuguese and Italian speakers can't. 'Separate l... - [Diglossia](https://unseel.com/linguistics/diglossia.html): Arabic MSA for news and religion; a dozen dialects for home and market. Nobody speaks MSA natively. The two varieties coexist in rigid no... - [Discourse Markers](https://unseel.com/linguistics/discourse-markers.html): Discourse markers — well, so, you know, I mean, anyway, right — contribute almost nothing to truth conditions but do most of the procedur... - [Distinctive Features](https://unseel.com/linguistics/distinctive-features.html): Distinctive features are the smallest contrastive properties of speech sounds: binary attributes like [±voice], [±nasal], [±high], [±ante... - [Donkey Anaphora](https://unseel.com/linguistics/donkey-anaphora.html): Donkey anaphora is the puzzle that "Every farmer who owns a donkey beats it" binds the indefinite a donkey universally — the pronoun it r... - [Ejectives and Implosives](https://unseel.com/linguistics/ejectives-implosives.html): Ejectives and implosives are non-pulmonic consonants. Instead of pushing air from the lungs, they use the closed glottis as a piston — ra... - [Ellipsis (Linguistic)](https://unseel.com/linguistics/ellipsis-linguistic.html): Linguistic ellipsis is the omission of words whose meaning is recoverable from context. "John can swim and Mary can too" deletes the seco... - [Entailment vs Implicature](https://unseel.com/linguistics/entailment-vs-implicature.html): Entailment is what a sentence logically guarantees; implicature is what a speaker suggests without saying. Entailments survive every cons... - [Ergative-Absolutive Alignment](https://unseel.com/linguistics/ergative-absolutive.html): Ergative-absolutive is one of the two main ways languages can group the core arguments of a verb. English-style nominative-accusative lan... - [Evidentiality](https://unseel.com/linguistics/evidentiality.html): Evidentiality is the grammatical encoding of how a speaker came to know what they assert — by seeing it, hearing it, inferring it, or bei... - [Formants](https://unseel.com/linguistics/formants.html): Every vowel has a hidden fingerprint — two resonant frequencies called formants. Plot F1 against F2 and vowels fall into the universal vo... - [Fusional vs Isolating Languages](https://unseel.com/linguistics/fusional-vs-isolating.html): Languages distribute grammatical work very differently across words. Isolating languages (Mandarin, Vietnamese, Yoruba) approach one morp... - [Given vs New Information](https://unseel.com/linguistics/given-new-information.html): Given information is what the hearer is assumed to already know; new information is what the speaker is contributing. Languages mark this... - [Grammatical Agreement](https://unseel.com/linguistics/agreement-grammatical.html): Grammatical agreement (or concord) is when one word changes form to match the grammatical features of another. A verb agrees with its sub... - [Grammatical Case](https://unseel.com/linguistics/grammatical-case.html): In Latin, 'the girl' has different endings for subject, object, and possessor — puella, puellam, puellae. Finnish has 15 cases. English h... - [Great Vowel Shift](https://unseel.com/linguistics/great-vowel-shift.html): Between 1400 and 1700, every long vowel in English shifted upward. 'Bite' used to be 'beet'. The spelling froze around 1500. The vowels k... - [Gricean Maxims](https://unseel.com/linguistics/gricean-maxims.html): Conversation works because we silently assume cooperation. Four rules: say enough, be truthful, stay relevant, be clear. Breaking them on... - [Grimm's Law](https://unseel.com/linguistics/grimms-law.html): Thousands of years ago, Germanic underwent a clean sound shift. Every PIE /p/ became /f/, every /t/ became 'th', every /k/ became /h/. Ja... - [Head Directionality](https://unseel.com/linguistics/head-directionality.html): English puts heads first — 'eat sushi', 'on the table'. Japanese puts them last — 'sushi eat', 'table-on'. One switch cascades through th... - [Iconicity in Language](https://unseel.com/linguistics/iconicity.html): Iconicity in language is the principle that linguistic form sometimes resembles its meaning rather than being arbitrary. Saussure's Cours... - [Implicature](https://unseel.com/linguistics/implicature.html): 'Is Sam a good employee?' 'He's always on time.' What was SAID was punctuality; what was COMMUNICATED was the opposite. Implicature fills... - [Inflection vs Derivation](https://unseel.com/linguistics/inflection-vs-derivation.html): 'walks' and 'walked' are still 'walk' — that's inflection. 'walker' and 'walkable' are new words — that's derivation. One stays in its gr... - [International Phonetic Alphabet (IPA)](https://unseel.com/linguistics/ipa.html): The IPA is a system of symbols designed so that each symbol stands for exactly one speech sound and each speech sound is written with exa... - [Intonation](https://unseel.com/linguistics/intonation.html): Intonation is the linguistically meaningful variation in pitch across an utterance. The same five words — "you're going to the store" — c... - [Island Constraints](https://unseel.com/linguistics/island-constraints.html): Island constraints are syntactic configurations from which extraction — wh-movement, topicalisation, relativisation — is blocked. The ter... - [Language Family Tree](https://unseel.com/linguistics/language-family-tree.html): Explore how 7,000 languages trace back to common ancestors — watch a 3D language family tree grow from Proto-Indo-European roots to moder... - [Lexical Ambiguity](https://unseel.com/linguistics/lexical-ambiguity.html): 'I'm going to the bank.' River or finance? Same word, different worlds. Your brain resolves thousands of ambiguities per minute using con... - [Loanwords](https://unseel.com/linguistics/loanwords.html): English is a magpie. Sushi from Japanese, algorithm from Arabic, kindergarten from German, déjà vu from French, robot from Czech. 60% of ... - [Logographic Writing](https://unseel.com/linguistics/logographic-writing.html): In Chinese, each character is a whole morpheme. 水 for water, 山 for mountain, 人 for person — pictographs evolved over 3000 years, still re... - [Manner of Articulation](https://unseel.com/linguistics/manner-of-articulation.html): Consonants aren't just WHERE you block the air — they're also HOW you shape it. Stops, fricatives, nasals, and approximants shape airflow... - [Metaphor Mapping](https://unseel.com/linguistics/metaphor-mapping.html): 'Spend time.' 'Waste your day.' 'Invest an hour.' Every one of those verbs came from money. A whole domain mapped onto another — metaphor... - [Metonymy](https://unseel.com/linguistics/metonymy.html): Metonymy is a figure of speech in which one entity is referred to by the name of something contiguously related to it — "The White House ... - [Minimal Pairs](https://unseel.com/linguistics/minimal-pairs.html): Two words differing by exactly one sound — bat vs cat, ship vs sheep, light vs right — prove which sound differences your language treats... - [Minimalist Program (Chomsky)](https://unseel.com/linguistics/minimalist-program.html): The Minimalist Program is Chomsky's 1995 reformulation of Universal Grammar around the leanest possible architecture. The language facult... - [Modality](https://unseel.com/linguistics/modality.html): Modality is the grammatical category for expressing necessity and possibility. Linguists distinguish three principal flavours: deontic (o... - [Mora Theory](https://unseel.com/linguistics/moras.html): A mora is a sub-syllabic unit of phonological weight. A short syllable (CV) is one mora; a long syllable (CVV or CVC) is two. English cou... - [Morpheme Building](https://unseel.com/linguistics/morpheme-building.html): Morphemes explained in 3D — watch words explode into roots, prefixes, and suffixes like LEGO blocks. Free and bound morphemes visualized.... - [Nasalization](https://unseel.com/linguistics/nasalization.html): Nasalization is the simultaneous flow of air through the nose and mouth during a speech sound, produced by lowering the velum (soft palat... - [Nominative-Accusative Alignment](https://unseel.com/linguistics/nominative-accusative.html): Nominative-accusative alignment is the system English uses, alongside about half of the world's languages. It treats the sole argument of... - [Nonconcatenative Morphology (Templatic)](https://unseel.com/linguistics/nonconcatenative-morphology.html): Most languages build words by chaining morphemes end-to-end: walk + -ed = walked. Nonconcatenative morphology breaks that pattern. The Ar... - [Passive Voice (Typology)](https://unseel.com/linguistics/passive-voice-typology.html): The passive is a voice operation that promotes the patient to subject and demotes the agent — but languages mark it very differently. Eng... - [Phoneme vs Allophone](https://unseel.com/linguistics/phoneme-vs-allophone.html): A phoneme is the smallest sound unit that can distinguish one word from another in a language. An allophone is a predictable, automatic v... - [Phonetic Vowel Space](https://unseel.com/linguistics/phonetic-vowel-space.html): Vowel space explained in 3D — see how your tongue maps every vowel in the IPA trapezoid. Front, back, high, low vowels visualized as glow... - [Place of Articulation](https://unseel.com/linguistics/place-of-articulation.html): Where consonants are formed in the mouth — bilabial, labiodental, dental, alveolar, postalveolar, palatal, velar, glottal. Eight precise ... - [Politeness Theory (Brown & Levinson)](https://unseel.com/linguistics/politeness-theory.html): Politeness theory models everyday language as a continuous calibration of face — the public self-image people maintain in interaction. Br... - [Polysemy](https://unseel.com/linguistics/polysemy.html): 'Head' of a body, head of state, head of a pin, head on a beer — different things, clearly linked. Polysemy is one word radiating senses ... - [Polysynthetic Languages](https://unseel.com/linguistics/polysynthesis.html): Polysynthetic languages compress whole sentences into a single word by stacking many morphemes onto a verb root and incorporating noun ar... - [Poverty of the Stimulus Argument](https://unseel.com/linguistics/poverty-of-stimulus.html): The Poverty of the Stimulus argument, formulated by Noam Chomsky in his 1971 Harvard William James Lectures and elaborated across subsequ... - [Presupposition](https://unseel.com/linguistics/presupposition.html): A presupposition is content that an utterance takes for granted, distinct from what it asserts. The king of France is bald presupposes th... - [Principles and Parameters (Chomsky)](https://unseel.com/linguistics/principles-and-parameters.html): Principles and Parameters is Noam Chomsky's theory that Universal Grammar consists of invariant principles plus a small set of binary swi... - [Prosody](https://unseel.com/linguistics/prosody.html): Prosody is the suprasegmental layer of speech — what survives if you abstract away from the individual consonants and vowels. It encompas... - [Prototype Theory](https://unseel.com/linguistics/prototype-theory.html): Picture a bird. You thought of a robin, not a penguin. Categories aren't all-or-nothing — they have centers and edges. A penguin is a bir... - [Quantifiers in Natural Language](https://unseel.com/linguistics/quantifiers-natural-language.html): Natural language quantifiers — every, some, most, few, all, no, three, many — express how many of a domain a predicate holds for. First-o... - [Raising Constructions](https://unseel.com/linguistics/raising-constructions.html): A raising construction moves an argument from an embedded clause into a higher position because the higher predicate has no thematic role... - [Recursion](https://unseel.com/linguistics/recursion-in-language.html): 'The cat that saw the mouse that ate the cheese that sat on the shelf...' Embeddings nest infinitely. Finite brain, infinite sentences — ... - [Reduplication](https://unseel.com/linguistics/reduplication.html): Indonesian 'buku' (book) becomes 'buku-buku' (books) — plurality by repetition. Tagalog partially reduplicates to mark tense. An ancient ... - [Relative Clauses](https://unseel.com/linguistics/relative-clauses.html): A relative clause modifies a noun by linking the noun to an argument or adjunct position internal to the clause. English uses wh-relative... - [Relevance Theory (Sperber & Wilson)](https://unseel.com/linguistics/relevance-theory.html): Relevance theory replaces Grice's four maxims with a single cognitive principle: humans automatically seek interpretations that yield the... - [Sapir-Whorf](https://unseel.com/linguistics/sapir-whorf.html): English has one word for blue. Russian has two — голубой (light) and синий (dark). Russian speakers distinguish the two faster. Language ... - [Saussure's Signifier and Signified](https://unseel.com/linguistics/saussure-signifier-signified.html): Ferdinand de Saussure's signifier (signifiant) and signified (signifié) are the two faces of the linguistic sign as described in Cours de... - [Semantic Frames](https://unseel.com/linguistics/semantic-frames.html): Say 'restaurant' and a whole scene loads — waiter, menu, tip, bill. One word evokes roles, props, and scripts. Understanding a sentence m... - [Semantic Network](https://unseel.com/linguistics/semantic-network.html): See how your brain stores and retrieves words as an interconnected network — watch activation spread from 'dog' to 'cat' to 'pet' in real... - [Sound Wave of Speech](https://unseel.com/linguistics/sound-wave-speech.html): See spoken words become visible 3D waveforms — explore formants F1, F2, F3 that shape vowels, consonant bursts, and why your voice is a u... - [Speech Acts](https://unseel.com/linguistics/speech-acts.html): 'I promise' creates an obligation. 'I now pronounce you married' literally changes the world. Some sentences don't describe reality — the... - [Stress Patterns](https://unseel.com/linguistics/stress-patterns.html): RE-cord (the thing) vs re-CORD (the action). Same letters, different stressed syllable, different part of speech. Trochees fall, iambs rise. - [Syllable Onset, Nucleus, Coda](https://unseel.com/linguistics/syllable-onset-coda.html): Every syllable everywhere splits into three slots: Onset (consonants before the vowel), Nucleus (the vowel itself, the only obligatory sl... - [Syllable Structure](https://unseel.com/linguistics/syllable-structure.html): Every syllable splits into Onset, Nucleus, and Coda. The English word 'strength' packs CCCVCC — three consonants, a vowel, two consonants... - [Syntax Tree](https://unseel.com/linguistics/syntax-tree.html): How sentences are structured — a syntax tree breaks "The cat sat on the mat" into noun phrases, verb phrases, and terminals. The hidden a... - [Systemic Functional Grammar (Halliday)](https://unseel.com/linguistics/systemic-functional-grammar.html): Systemic Functional Grammar (SFG) is the linguistic theory developed by Michael A. K. Halliday from the 1960s and codified in An Introduc... - [Tense and Aspect](https://unseel.com/linguistics/tense-aspect.html): Tense locates an event in time relative to the moment of speaking — past, present, future. Aspect describes the event's internal temporal... - [Tone Contours](https://unseel.com/linguistics/tone-contours.html): The same syllable 'ma' means four different things in Mandarin depending on pitch movement — mother, hemp, horse, scold. Half the world's... - [Topic vs Focus](https://unseel.com/linguistics/topic-vs-focus.html): Topic is what a sentence is about; focus is what the sentence asserts about it. Languages mark this split differently — Mandarin and Japa... - [Universal Grammar (Chomsky)](https://unseel.com/linguistics/universal-grammar.html): Universal Grammar is Chomsky's hypothesis that humans are born with an innate, species-specific language faculty whose architecture const... - [Voice Onset Time](https://unseel.com/linguistics/voice-onset-time.html): The difference between 'b' and 'p' isn't where your lips are — it's timing. A 60-millisecond delay before voice onset separates the two, ... - [Wh-Movement](https://unseel.com/linguistics/wh-movement.html): Wh-movement is the syntactic operation by which an interrogative or relative phrase — "what", "who", "which book" — appears at the front ... - [Word Order Typology](https://unseel.com/linguistics/word-order-typology.html): English says 'I eat sushi' (SVO). Japanese says 'I sushi eat' (SOV). Irish says 'Eat I sushi' (VSO). Three orders cover 95% of all langua... - [Zero Morpheme](https://unseel.com/linguistics/zero-morpheme.html): 'One sheep, two sheep' — plural with no audible marker. Linguists call this a zero morpheme: grammatically present, pronounced silently. ... ## Optional - [Sitemap](https://unseel.com/sitemap.xml): Machine-readable URL index - [About](https://unseel.com/index.html): Site mission and how concepts are produced