Executive Summary
This reference compiles over 200 formulas, identities, and rules across 9 branches of mathematics: algebra, geometry, trigonometry, calculus, statistics, probability, number theory, linear algebra, and discrete math. Every formula includes its variables, an example, and context for when to use it. The Greek alphabet reference maps each letter to its standard mathematical usage. All data is searchable, sortable, and downloadable as CSV.
- 50+ algebra formulas covering equations, factoring, sequences, logarithms, exponents, coordinate geometry, and financial math.
- 34 geometry formulas for 2D shapes (circle, triangle, rectangle, polygon) and 3D solids (sphere, cylinder, cone, torus).
- 24 trigonometric identities including Pythagorean, sum/difference, double/half angle, product-to-sum, and triangle laws.
- 14 probability distributions (Bernoulli, Binomial, Poisson, Normal, Exponential, Chi-squared, t, F, Beta, Gamma) with mean, variance, and use cases.
200+
Formulas & identities
80+
Glossary terms
9
Math branches
14
Distributions
Part 1: Algebra Formulas (50+)
Algebra is the foundation of all higher mathematics. This section covers equations (quadratic formula, discriminant, completing the square), factoring (difference of squares, sum/difference of cubes), sequences and series (arithmetic, geometric, finite and infinite), logarithm and exponent rules, coordinate geometry (distance, midpoint, slope), linear equations, inequalities, and polynomial theorems (remainder, factor, rational root). Financial formulas (compound interest, exponential growth/decay) are included for applied contexts.
Algebra Formulas Reference (50+)
52 rows
| Formula Name | Formula | Category | Example |
|---|---|---|---|
| Quadratic Formula | x = (-b +/- sqrt(b^2 - 4ac)) / 2a | Equations | 2x^2 + 5x - 3 = 0 => x = 0.5 or x = -3 |
| Discriminant | D = b^2 - 4ac | Equations | D = 25 - 24 = 1 > 0 => two real roots |
| Difference of Squares | a^2 - b^2 = (a+b)(a-b) | Factoring | x^2 - 9 = (x+3)(x-3) |
| Perfect Square Trinomial | a^2 +/- 2ab + b^2 = (a +/- b)^2 | Factoring | x^2 + 6x + 9 = (x+3)^2 |
| Sum of Cubes | a^3 + b^3 = (a+b)(a^2 - ab + b^2) | Factoring | x^3 + 8 = (x+2)(x^2 - 2x + 4) |
| Difference of Cubes | a^3 - b^3 = (a-b)(a^2 + ab + b^2) | Factoring | x^3 - 27 = (x-3)(x^2 + 3x + 9) |
| Binomial Theorem | (a+b)^n = sum_{k=0}^{n} C(n,k) a^(n-k) b^k | Expansion | (x+1)^3 = x^3 + 3x^2 + 3x + 1 |
| Arithmetic Sequence (nth term) | a_n = a_1 + (n-1)d | Sequences | a_1=3, d=5: a_10 = 3 + 9*5 = 48 |
| Arithmetic Series Sum | S_n = n/2 * (a_1 + a_n) = n/2 * (2a_1 + (n-1)d) | Sequences | S_10 = 10/2 * (3+48) = 255 |
| Geometric Sequence (nth term) | a_n = a_1 * r^(n-1) | Sequences | a_1=2, r=3: a_5 = 2*3^4 = 162 |
| Geometric Series Sum (finite) | S_n = a_1 * (1 - r^n) / (1 - r), r != 1 | Sequences | S_5 = 2*(1-3^5)/(1-3) = 242 |
| Geometric Series Sum (infinite) | S = a_1 / (1 - r), |r| < 1 | Sequences | a_1=1, r=0.5: S = 1/0.5 = 2 |
| Logarithm Product Rule | log_b(xy) = log_b(x) + log_b(y) | Logarithms | log(6) = log(2) + log(3) |
| Logarithm Quotient Rule | log_b(x/y) = log_b(x) - log_b(y) | Logarithms | log(5/2) = log(5) - log(2) |
| Logarithm Power Rule | log_b(x^n) = n * log_b(x) | Logarithms | log(8) = log(2^3) = 3*log(2) |
| Change of Base Formula | log_b(x) = log_c(x) / log_c(b) | Logarithms | log_2(8) = ln(8)/ln(2) = 3 |
| Exponent Product Rule | a^m * a^n = a^(m+n) | Exponents | 2^3 * 2^4 = 2^7 = 128 |
| Exponent Quotient Rule | a^m / a^n = a^(m-n) | Exponents | 3^5 / 3^2 = 3^3 = 27 |
| Exponent Power Rule | (a^m)^n = a^(mn) | Exponents | (2^3)^2 = 2^6 = 64 |
| Zero Exponent | a^0 = 1, a != 0 | Exponents | 5^0 = 1, (-3)^0 = 1 |
Page 1 of 3
Part 2: Geometry Formulas (30+)
Geometry formulas for area, perimeter, volume, and surface area of 2D shapes (circle, triangle, rectangle, square, parallelogram, trapezoid, rhombus, regular polygon, ellipse) and 3D solids (sphere, cylinder, cone, rectangular prism, pyramid, torus). Includes the Pythagorean theorem, Heron formula, polygon interior/exterior angle formulas, and the Ramanujan approximation for ellipse circumference.
Geometry Formulas Reference (30+)
34 rows
| Shape | Property | Formula | Variables | Notes |
|---|---|---|---|---|
| Circle | Area | A = pi * r^2 | r = radius | pi approx 3.14159 |
| Circle | Circumference | C = 2 * pi * r = pi * d | r = radius, d = diameter | d = 2r |
| Circle | Arc Length | s = r * theta | theta in radians | For degrees: s = pi*r*theta/180 |
| Circle | Sector Area | A = (1/2) * r^2 * theta | theta in radians | For degrees: A = pi*r^2*theta/360 |
| Triangle | Area | A = (1/2) * b * h | b = base, h = height | Most common formula |
| Triangle | Area (Heron) | A = sqrt(s(s-a)(s-b)(s-c)), s = (a+b+c)/2 | a,b,c = sides, s = semi-perimeter | When height is unknown |
| Triangle | Area (two sides + angle) | A = (1/2) * a * b * sin(C) | a,b = sides, C = included angle | SAS area formula |
| Triangle | Perimeter | P = a + b + c | a,b,c = sides | |
| Equilateral Triangle | Area | A = (sqrt(3)/4) * s^2 | s = side length | All sides equal |
| Right Triangle | Pythagorean Theorem | a^2 + b^2 = c^2 | a,b = legs, c = hypotenuse | Most fundamental geometry theorem |
| Rectangle | Area | A = l * w | l = length, w = width | |
| Rectangle | Perimeter | P = 2l + 2w | l = length, w = width | |
| Rectangle | Diagonal | d = sqrt(l^2 + w^2) | l = length, w = width | By Pythagorean theorem |
| Square | Area | A = s^2 | s = side | |
| Square | Diagonal | d = s * sqrt(2) | s = side | |
| Parallelogram | Area | A = b * h | b = base, h = perpendicular height | Not slant height |
| Trapezoid | Area | A = (1/2)(a + b) * h | a,b = parallel sides, h = height | Average of bases times height |
| Rhombus | Area | A = (1/2) * d1 * d2 | d1,d2 = diagonals | Also A = s^2 * sin(theta) |
| Regular Polygon | Area | A = (1/4) * n * s^2 * cot(pi/n) | n = sides, s = side length | Equivalently (1/2)*n*s*apothem |
| Regular Polygon | Interior Angle | theta = (n-2)*180/n degrees | n = number of sides | Sum of interior angles = (n-2)*180 |
Page 1 of 2
Part 3: Trigonometric Identities (20+)
The core trigonometric identities: Pythagorean identities (sin^2 + cos^2 = 1 and its variants), reciprocal and quotient identities, angle sum and difference formulas, double angle formulas, half angle formulas, product-to-sum conversions, and the three triangle laws (sines, cosines, tangents). These identities are the foundation for solving trigonometric equations, simplifying expressions, and applications in physics, engineering, and signal processing.
Trigonometric Identities Reference (20+)
24 rows
| Identity | Formula | Category | Notes |
|---|---|---|---|
| Pythagorean Identity | sin^2(x) + cos^2(x) = 1 | Fundamental | The most fundamental trig identity |
| Pythagorean (tan) | 1 + tan^2(x) = sec^2(x) | Fundamental | Divide Pythagorean by cos^2 |
| Pythagorean (cot) | 1 + cot^2(x) = csc^2(x) | Fundamental | Divide Pythagorean by sin^2 |
| Reciprocal (csc) | csc(x) = 1/sin(x) | Reciprocal | |
| Reciprocal (sec) | sec(x) = 1/cos(x) | Reciprocal | |
| Reciprocal (cot) | cot(x) = 1/tan(x) = cos(x)/sin(x) | Reciprocal | |
| Quotient (tan) | tan(x) = sin(x)/cos(x) | Quotient | |
| Angle Sum (sin) | sin(A+B) = sinA cosB + cosA sinB | Sum/Difference | |
| Angle Sum (cos) | cos(A+B) = cosA cosB - sinA sinB | Sum/Difference | |
| Angle Difference (sin) | sin(A-B) = sinA cosB - cosA sinB | Sum/Difference | |
| Angle Difference (cos) | cos(A-B) = cosA cosB + sinA sinB | Sum/Difference | |
| Angle Sum (tan) | tan(A+B) = (tanA + tanB) / (1 - tanA tanB) | Sum/Difference | |
| Double Angle (sin) | sin(2x) = 2 sinx cosx | Double Angle | |
| Double Angle (cos) | cos(2x) = cos^2(x) - sin^2(x) = 2cos^2(x) - 1 = 1 - 2sin^2(x) | Double Angle | Three equivalent forms |
| Double Angle (tan) | tan(2x) = 2tanx / (1 - tan^2(x)) | Double Angle | |
| Half Angle (sin) | sin(x/2) = +/- sqrt((1 - cosx)/2) | Half Angle | Sign depends on quadrant |
| Half Angle (cos) | cos(x/2) = +/- sqrt((1 + cosx)/2) | Half Angle | Sign depends on quadrant |
| Half Angle (tan) | tan(x/2) = sin(x)/(1 + cos(x)) = (1 - cos(x))/sin(x) | Half Angle | Two useful forms |
| Product to Sum (sin*cos) | sinA cosB = (1/2)[sin(A+B) + sin(A-B)] | Product-Sum | |
| Product to Sum (cos*cos) | cosA cosB = (1/2)[cos(A-B) + cos(A+B)] | Product-Sum |
Page 1 of 2
Part 4: Calculus Rules (15+)
Essential derivative rules (power, product, quotient, chain), trigonometric derivatives, exponential and logarithmic derivatives, integration rules (power rule, substitution, integration by parts), and the two parts of the Fundamental Theorem of Calculus connecting derivatives and integrals. Calculus is the mathematics of continuous change and is essential for physics, engineering, economics, data science, and machine learning.
Calculus Rules Reference (15+)
19 rows
| Rule | Formula | Category | Example |
|---|---|---|---|
| Power Rule | d/dx [x^n] = n*x^(n-1) | Derivatives | d/dx [x^5] = 5x^4 |
| Constant Rule | d/dx [c] = 0 | Derivatives | d/dx [7] = 0 |
| Constant Multiple Rule | d/dx [cf(x)] = c*f'(x) | Derivatives | d/dx [3x^2] = 6x |
| Sum Rule | d/dx [f + g] = f' + g' | Derivatives | d/dx [x^2 + x^3] = 2x + 3x^2 |
| Product Rule | d/dx [fg] = f'g + fg' | Derivatives | d/dx [x*sin(x)] = sin(x) + x*cos(x) |
| Quotient Rule | d/dx [f/g] = (f'g - fg') / g^2 | Derivatives | d/dx [sin(x)/x] = (x*cos(x) - sin(x))/x^2 |
| Chain Rule | d/dx [f(g(x))] = f'(g(x)) * g'(x) | Derivatives | d/dx [sin(x^2)] = cos(x^2)*2x |
| Exponential | d/dx [e^x] = e^x | Derivatives | d/dx [e^(3x)] = 3e^(3x) (chain rule) |
| Natural Log | d/dx [ln(x)] = 1/x | Derivatives | d/dx [ln(x^2)] = 2/x |
| Trigonometric (sin) | d/dx [sin(x)] = cos(x) | Derivatives | |
| Trigonometric (cos) | d/dx [cos(x)] = -sin(x) | Derivatives | |
| Trigonometric (tan) | d/dx [tan(x)] = sec^2(x) | Derivatives | |
| Power Rule (Integral) | integral x^n dx = x^(n+1)/(n+1) + C, n != -1 | Integrals | integral x^3 dx = x^4/4 + C |
| Exponential (Integral) | integral e^x dx = e^x + C | Integrals | integral e^(2x) dx = (1/2)e^(2x) + C |
| Natural Log (Integral) | integral (1/x) dx = ln|x| + C | Integrals | |
| Substitution | integral f(g(x))*g'(x) dx = integral f(u) du, u = g(x) | Integration Techniques | integral 2x*cos(x^2) dx, let u = x^2 |
| Integration by Parts | integral u dv = uv - integral v du | Integration Techniques | integral x*e^x dx = x*e^x - e^x + C |
| Fundamental Theorem (Part 1) | d/dx [integral_a^x f(t) dt] = f(x) | Fundamental | d/dx [integral_0^x sin(t) dt] = sin(x) |
| Fundamental Theorem (Part 2) | integral_a^b f(x) dx = F(b) - F(a) | Fundamental | integral_0^1 x^2 dx = [x^3/3]_0^1 = 1/3 |
Part 5: Statistics and Probability Distributions (14)
Reference table for 14 probability distributions covering both discrete (Bernoulli, Binomial, Poisson, Geometric, Negative Binomial, Hypergeometric) and continuous (Uniform, Normal, Exponential, Chi-Squared, t-Distribution, F-Distribution, Beta, Gamma) distributions. Each entry includes parameters, mean, variance, PMF/PDF, and typical use cases. The Normal distribution and Central Limit Theorem underpin most of statistical inference.
Probability Distributions Reference (14)
14 rows
| Distribution | Type | Parameters | Mean | Variance | Usage |
|---|---|---|---|---|---|
| Bernoulli | Discrete | p (success probability) | p | p(1-p) | Single trial with two outcomes (coin flip, yes/no) |
| Binomial | Discrete | n (trials), p (success prob) | np | np(1-p) | Number of successes in n independent trials |
| Poisson | Discrete | lambda (rate) | lambda | lambda | Events per time/space interval (arrivals, defects, calls) |
| Geometric | Discrete | p (success probability) | 1/p | (1-p)/p^2 | Number of trials until first success |
| Negative Binomial | Discrete | r (successes), p (prob) | r/p | r(1-p)/p^2 | Trials until r-th success |
| Hypergeometric | Discrete | N, K, n | nK/N | n*K*(N-K)*(N-n) / (N^2*(N-1)) | Sampling without replacement (quality control, lotteries) |
| Uniform (Continuous) | Continuous | a (min), b (max) | (a+b)/2 | (b-a)^2/12 | Equal probability over an interval (random number generation) |
| Normal (Gaussian) | Continuous | mu (mean), sigma (std dev) | mu | sigma^2 | Natural phenomena, measurement errors, central limit theorem |
| Exponential | Continuous | lambda (rate) | 1/lambda | 1/lambda^2 | Time between Poisson events (wait times, lifetimes, decay) |
| Chi-Squared | Continuous | k (degrees of freedom) | k | 2k | Goodness of fit, independence tests, variance estimation |
| t-Distribution | Continuous | v (degrees of freedom) | 0 (v > 1) | v/(v-2) (v > 2) | Small sample means, confidence intervals when sigma unknown |
| F-Distribution | Continuous | d1, d2 (degrees of freedom) | d2/(d2-2) for d2 > 2 | Complex expression | ANOVA, comparing two variances, regression F-tests |
| Beta | Continuous | alpha, beta (shape) | alpha/(alpha+beta) | alpha*beta / ((alpha+beta)^2*(alpha+beta+1)) | Probabilities/proportions (Bayesian inference, A/B testing) |
| Gamma | Continuous | k (shape), theta (scale) | k*theta | k*theta^2 | Wait times for k Poisson events, insurance claims |
Math Branch Usage by Field (%)
Source: OnlineTools4Free Research
Part 6: Number Theory
Number theory studies the properties and relationships of integers. Key topics: prime numbers and the Fundamental Theorem of Arithmetic (unique factorization), modular arithmetic (clock arithmetic, foundation of cryptography), Euler totient function, Fermat Little Theorem, the Chinese Remainder Theorem, Diophantine equations, and the Riemann Hypothesis (one of the greatest unsolved problems). Applications: RSA and Diffie-Hellman cryptography, hash functions, error-correcting codes, random number generation, and digital signatures. Number theory was once considered "pure" mathematics with no practical application. Today it secures all internet communication.
Part 7: Linear Algebra
Linear algebra studies vectors, matrices, vector spaces, and linear transformations. Key concepts: vector operations (dot product, cross product, norms), matrix operations (multiplication, transpose, inverse, determinant), systems of linear equations (Gaussian elimination, Cramer rule), eigenvalues and eigenvectors, orthogonality, and singular value decomposition (SVD). Linear algebra is the most practically important branch of mathematics: it underpins machine learning (neural networks are matrix operations), computer graphics (3D transformations), search engines (PageRank), data science (PCA), quantum mechanics, and signal processing. Every data scientist, ML engineer, and game developer uses linear algebra daily.
Part 8: Discrete Mathematics
Discrete mathematics studies structures that are fundamentally discrete (countable, separated) rather than continuous. Key topics: combinatorics (counting, permutations, combinations, pigeonhole principle, inclusion-exclusion), graph theory (vertices, edges, paths, trees, colorings, Euler/Hamiltonian paths, network flows), logic (propositional logic, predicate logic, proof techniques), set theory, relations, functions, recurrence relations, generating functions, Boolean algebra, and algorithm analysis (Big O notation). Discrete math is the mathematical foundation of computer science: algorithms, data structures, databases, cryptography, compilers, networking, and AI all rely on discrete mathematical structures.
Math Branch Difficulty Rating (1-5)
Source: OnlineTools4Free Research
Part 9: Greek Alphabet in Mathematics
The Greek alphabet is used extensively in mathematics, physics, and engineering for variables, constants, and special functions. This reference maps each Greek letter to its most common mathematical usage.
Greek Alphabet Reference (24 Letters)
24 rows
| Upper | Lower | Name | Mathematical Usage |
|---|---|---|---|
| Α | α | Alpha | Angles, significance level (statistics), learning rate (ML) |
| Β | β | Beta | Angles, beta distribution, Type II error probability, regression coefficients |
| Γ | γ | Gamma | Gamma function, Euler-Mascheroni constant, surface tension |
| Δ | δ | Delta | Change/difference (Delta x), Dirac delta, Kronecker delta, epsilon-delta limits |
| Ε | ε | Epsilon | Arbitrarily small positive number, epsilon-delta proofs, machine epsilon |
| Ζ | ζ | Zeta | Riemann zeta function, damping ratio |
| Η | η | Eta | Efficiency, learning rate, partial eta-squared (statistics) |
| Θ | θ | Theta | Angles (most common), trigonometric functions, Big Theta notation |
| Ι | ι | Iota | Index notation, inclusion map |
| Κ | κ | Kappa | Curvature, condition number, Cohen kappa (statistics) |
| Λ | λ | Lambda | Eigenvalues, Poisson rate, wavelength, lambda calculus |
| Μ | μ | Mu | Population mean, micro- prefix, coefficient of friction, Mobius function |
| Ν | ν | Nu | Degrees of freedom, frequency, kinematic viscosity |
| Ξ | ξ | Xi | Random variable, damping coefficient |
| Ο | ο | Omicron | Rarely used (looks like Latin O) |
| Π | π | Pi | Circle constant (3.14159...), product notation (uppercase), prime counting function |
| Ρ | ρ | Rho | Correlation coefficient, density, spectral radius |
| Σ | σ | Sigma | Summation (uppercase), standard deviation (lowercase), stress tensor |
| Τ | τ | Tau | Torque, time constant, Kendall tau, tau = 2*pi |
| Υ | υ | Upsilon | Rarely used in mathematics |
Page 1 of 2
Glossary (80+ Terms)
Absolute Value
AlgebraThe non-negative value of a number without regard to its sign, denoted |x|. Geometrically, the distance from zero on the number line. |5| = 5, |-5| = 5. In complex numbers, |a+bi| = sqrt(a^2 + b^2) gives the modulus. Properties: |xy| = |x||y|, |x+y| <= |x|+|y| (triangle inequality), |x| >= 0 always.
Asymptote
CalculusA line that a curve approaches but never reaches. Three types: horizontal (y = L as x -> +/-infinity), vertical (x = a where f(x) -> +/-infinity), and oblique/slant (y = mx + b for rational functions where degree numerator = degree denominator + 1). Example: y = 1/x has vertical asymptote x = 0 and horizontal asymptote y = 0.
Axiom
FoundationsA statement accepted as true without proof, serving as a starting point for deductive reasoning. Examples: Euclid axioms for geometry (through any two points there is exactly one line), Peano axioms for natural numbers, ZFC axioms for set theory. Axioms are chosen to be consistent (non-contradictory) and independent (not derivable from each other).
Bijection
FunctionsA function that is both injective (one-to-one) and surjective (onto). Every element in the domain maps to a unique element in the codomain, and every element in the codomain is mapped to. Bijections establish a one-to-one correspondence between sets and prove they have the same cardinality. Example: f(x) = 2x+1 from R to R is a bijection.
Binomial Coefficient
CombinatoricsC(n,k) = n! / (k!(n-k)!), read as "n choose k." Counts the number of ways to choose k items from n items without regard to order. Properties: C(n,0) = C(n,n) = 1, C(n,k) = C(n, n-k), sum of row n in Pascal triangle = 2^n. Central to the binomial theorem, probability, and combinatorics.
Cardinal Number
Set TheoryA number that indicates quantity (how many). For finite sets, it is a non-negative integer. For infinite sets, Cantor defined: aleph-null (|N| = |Z| = |Q|), the cardinality of the continuum c = |R| = 2^aleph-null. The continuum hypothesis asks whether there is a cardinality between aleph-null and c.
Cauchy Sequence
AnalysisA sequence where terms become arbitrarily close to each other as the sequence progresses. Formally: for every epsilon > 0, there exists N such that |a_m - a_n| < epsilon for all m, n > N. In complete metric spaces (like R), every Cauchy sequence converges. Cauchy sequences are fundamental to real analysis and the construction of the real numbers.
Combinatorics
Discrete MathThe branch of mathematics studying counting, arrangement, and combination of objects. Key topics: permutations (ordered arrangements: n!), combinations (unordered selections: C(n,k)), pigeonhole principle, inclusion-exclusion, generating functions, graph theory, Ramsey theory. Applications: probability, cryptography, algorithm analysis, optimization.
Complex Number
Number TheoryA number of the form a + bi where a and b are real and i = sqrt(-1). a is the real part, b is the imaginary part. Complex numbers extend the reals and guarantee every polynomial equation has a solution (Fundamental Theorem of Algebra). Operations: addition component-wise, multiplication uses i^2 = -1, division by conjugate. Euler formula: e^(ix) = cos(x) + i*sin(x).
Congruence
Number TheoryIn number theory: a is congruent to b modulo n (a = b mod n) if n divides (a-b). Example: 17 = 2 (mod 5) because 5 divides 15. In geometry: two figures are congruent if they have the same shape and size (can be mapped by rigid motions: translation, rotation, reflection). Triangle congruence: SSS, SAS, ASA, AAS.
Continuous Function
CalculusA function where small changes in input produce small changes in output. Formally: f is continuous at x=a if lim(x->a) f(x) = f(a). Informally: the graph has no breaks, jumps, or holes. Key theorems: Intermediate Value Theorem (continuous function on [a,b] takes every value between f(a) and f(b)), Extreme Value Theorem (continuous function on closed interval attains its max and min).
Convergence
AnalysisA sequence or series approaches a definite value (limit) as terms increase. Sequence convergence: lim(n->inf) a_n = L. Series convergence: sum converges if partial sums converge. Tests: comparison, ratio, root, integral, alternating series. Absolute convergence implies convergence. Rate of convergence: how quickly a sequence approaches its limit (linear, quadratic, exponential).
Corollary
FoundationsA statement that follows readily from a theorem that has already been proven. It is a direct consequence requiring little or no additional proof. Example: Corollary of Pythagorean Theorem: the diagonal of a unit square is sqrt(2). Distinguished from a lemma (helper result before a theorem) and a proposition (a proven statement of moderate importance).
Cross Product
Linear AlgebraA binary operation on two vectors in R^3 producing a vector perpendicular to both: a x b = |a||b|sin(theta) n-hat. Result: a vector (unlike dot product which gives a scalar). Properties: anti-commutative (a x b = -(b x a)), |a x b| = area of parallelogram. Formula: (a2*b3 - a3*b2, a3*b1 - a1*b3, a1*b2 - a2*b1). Used in physics (torque, angular momentum) and computer graphics.
Derivative
CalculusThe instantaneous rate of change of a function. f'(x) = lim(h->0) [f(x+h) - f(x)] / h. Geometrically: slope of the tangent line. Physically: velocity is the derivative of position, acceleration is the derivative of velocity. Higher-order derivatives: f'' (second derivative, concavity), f''' (third, jerk). Notation: f'(x), dy/dx, Df, dot notation.
Determinant
Linear AlgebraA scalar value computed from a square matrix that encodes important properties. For 2x2: det = ad-bc. Properties: det = 0 means singular (no inverse), det of product = product of dets, det changes sign when rows swap, det scales when row is multiplied. Geometric meaning: signed volume of the parallelepiped spanned by columns/rows. Used in: solving linear systems (Cramer rule), eigenvalues, change of variables in integrals.
Differential Equation
CalculusAn equation involving a function and its derivatives. ODE (ordinary): involves one independent variable. PDE (partial): involves multiple independent variables. Order: highest derivative that appears. Linear vs nonlinear. Solution methods: separation of variables, integrating factors, Laplace transforms, power series, numerical methods (Euler, Runge-Kutta). Applications: physics (Newton law, heat equation, wave equation), biology, economics.
Dot Product
Linear AlgebraA binary operation on two vectors producing a scalar: a . b = |a||b|cos(theta) = sum(a_i * b_i). Result: a scalar (unlike cross product). Properties: commutative, distributive. a . b = 0 means perpendicular (orthogonal). a . a = |a|^2. Used for: projections, angles between vectors, work (force dot displacement), checking orthogonality.
Eigenvalue
Linear AlgebraA scalar lambda such that Av = lambda*v for a nonzero vector v (eigenvector). Found by solving det(A - lambda*I) = 0 (characteristic polynomial). Properties: sum of eigenvalues = trace(A), product = det(A). Diagonalization: A = PDP^(-1) where D is diagonal of eigenvalues. Applications: PCA in data science, Google PageRank, quantum mechanics, vibration analysis, stability analysis.
Euler Formula
Complex Analysise^(ix) = cos(x) + i*sin(x). Called the most beautiful equation in mathematics. Special case: e^(i*pi) + 1 = 0 (Euler identity) connects five fundamental constants (e, i, pi, 1, 0). Applications: simplifies trigonometric calculations, signal processing (Fourier transforms), electrical engineering (phasors), quantum mechanics, complex analysis.
Factorial
Combinatoricsn! = 1 * 2 * 3 * ... * n for positive integers. 0! = 1 by convention. Counts the number of permutations of n distinct objects. Stirling approximation: n! ~ sqrt(2*pi*n) * (n/e)^n for large n. The gamma function extends factorials to non-integers: Gamma(n) = (n-1)! for positive integers. Growth: n! grows faster than any exponential (super-exponential growth).
Fibonacci Sequence
Number TheoryThe sequence where each term is the sum of the two preceding terms: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, .... F(n) = F(n-1) + F(n-2) with F(0)=0, F(1)=1. Closed form: Binet formula using the golden ratio phi. Ratio F(n+1)/F(n) -> phi = (1+sqrt(5))/2 ~ 1.618. Appears in: nature (phyllotaxis, pinecones, sunflowers), art, algorithms (Fibonacci heap), number theory.
Function
FunctionsA relation that assigns each element in the domain exactly one element in the codomain. Notation: f: A -> B, y = f(x). Types: injective (one-to-one), surjective (onto), bijective (both), linear (f(ax+by) = af(x)+bf(y)), continuous, differentiable. Composition: (f o g)(x) = f(g(x)). Inverse: f^(-1) exists iff f is bijective. Fundamental concept in all mathematics.
Gaussian Elimination
Linear AlgebraAn algorithm for solving systems of linear equations by transforming the augmented matrix to row echelon form using elementary row operations: swap rows, multiply row by nonzero scalar, add multiple of one row to another. Reduced row echelon form (RREF) gives the solution directly. Complexity: O(n^3). Used for: solving linear systems, finding matrix inverse, computing rank and determinant.
Golden Ratio
Number Theoryphi = (1 + sqrt(5))/2 ~ 1.6180339887... The unique positive number satisfying phi = 1 + 1/phi, equivalently phi^2 = phi + 1. Geometric property: a rectangle with ratio phi can be divided into a square and a similar rectangle. Appears in: Fibonacci sequence (limit of ratios), regular pentagons, the Parthenon (debated), phyllotaxis in plants, financial markets (Fibonacci retracement).
Graph Theory
Discrete MathThe study of graphs: mathematical structures consisting of vertices (nodes) and edges (connections). Types: directed/undirected, weighted, bipartite, planar, complete. Key concepts: degree, path, cycle, tree, connectivity, Euler path/circuit, Hamiltonian path/cycle, coloring, planarity. Applications: social networks, navigation (shortest path), scheduling, circuit design, internet routing.
Group
Abstract AlgebraA set G with a binary operation * satisfying: closure (a*b in G), associativity ((a*b)*c = a*(b*c)), identity (exists e: e*a = a*e = a), inverse (for each a exists a^(-1): a*a^(-1) = e). Examples: integers under addition, nonzero rationals under multiplication, symmetries of geometric objects. Abelian group: additionally commutative (a*b = b*a). Foundation of abstract algebra.
Hypothesis Testing
StatisticsA statistical procedure to determine whether sample data provide sufficient evidence to reject a null hypothesis. Steps: (1) state H0 and H1, (2) choose significance level alpha (often 0.05), (3) compute test statistic, (4) find p-value, (5) reject H0 if p < alpha. Types: one-tailed, two-tailed. Common tests: z-test, t-test, chi-squared, F-test, ANOVA. Type I error: false positive (reject true H0). Type II error: false negative (fail to reject false H0).
Imaginary Number
Number TheoryA number of the form bi where b is a nonzero real number and i = sqrt(-1). i^2 = -1, i^3 = -i, i^4 = 1 (cycles with period 4). Combined with real numbers to form complex numbers a + bi. Originally considered fictional (hence "imaginary"), now indispensable in: AC circuit analysis, quantum mechanics, signal processing, fluid dynamics, control theory.
Integral
CalculusA mathematical object representing area under a curve, accumulation, or the antiderivative. Definite integral: integral_a^b f(x) dx = signed area between f and x-axis from a to b. Indefinite integral: integral f(x) dx = F(x) + C where F is an antiderivative. Riemann integral: limit of Riemann sums. Techniques: substitution, integration by parts, partial fractions, trigonometric substitution. Applications: area, volume, work, probability, average value.
Irrational Number
Number TheoryA real number that cannot be expressed as a ratio of two integers. Decimal expansion is non-terminating and non-repeating. Examples: sqrt(2) (proved irrational by Pythagoreans), pi, e, phi (golden ratio), ln(2). The set of irrationals is uncountable (much larger than the rationals). Algebraic irrationals (roots of polynomials with integer coefficients, like sqrt(2)) vs transcendental (pi, e, which are not roots of any such polynomial).
Isomorphism
Abstract AlgebraA bijective mapping between mathematical structures that preserves the structure (operations, relations). If an isomorphism exists between two structures, they are structurally identical (differ only in labeling). Examples: (Z, +) is isomorphic to (2Z, +) via f(n) = 2n; two graphs are isomorphic if there is a bijection between vertices preserving edges. Isomorphism is an equivalence relation.
Jacobian
CalculusThe matrix of all first-order partial derivatives of a vector-valued function. For f: R^n -> R^m, the Jacobian is the m x n matrix [df_i/dx_j]. The Jacobian determinant measures local scaling of volume under the transformation. Used in: change of variables in multiple integrals, Newton method for systems, inverse function theorem, machine learning (backpropagation).
Lagrange Multiplier
CalculusA method for finding the extrema of a function subject to equality constraints. To optimize f(x,y) subject to g(x,y) = c: solve grad(f) = lambda * grad(g) along with the constraint. lambda is the Lagrange multiplier and represents the rate of change of the optimal value with respect to the constraint. Generalizes to multiple constraints and higher dimensions.
Limit
CalculusThe value a function or sequence approaches as the input approaches a value. lim(x->a) f(x) = L means f(x) can be made arbitrarily close to L by taking x sufficiently close to a. Epsilon-delta definition: for every epsilon > 0, there exists delta > 0 such that |f(x) - L| < epsilon whenever 0 < |x - a| < delta. Foundation of calculus (continuity, derivatives, integrals all defined via limits).
Linear Transformation
Linear AlgebraA function T: V -> W between vector spaces satisfying: T(u + v) = T(u) + T(v) and T(cv) = cT(v). Every linear transformation from R^n to R^m can be represented by an m x n matrix. Properties: preserves lines, parallelism, ratios of distances along lines. Examples: rotation, reflection, scaling, shearing, projection. Kernel (null space): vectors mapped to zero. Image (range): set of output vectors.
Logarithm
AlgebraThe inverse of exponentiation: log_b(x) = y means b^y = x. Common logarithm: log_10 (written log). Natural logarithm: log_e (written ln). Properties: log(xy) = log(x) + log(y), log(x/y) = log(x) - log(y), log(x^n) = n*log(x), log_b(1) = 0, log_b(b) = 1. Applications: pH scale, decibels, Richter scale, information theory (bits = log_2), algorithm complexity.
Matrix
Linear AlgebraA rectangular array of numbers arranged in rows and columns. An m x n matrix has m rows and n columns. Operations: addition, scalar multiplication, matrix multiplication (row-by-column), transpose (swap rows/columns), inverse (A^(-1) such that AA^(-1) = I), determinant. Special matrices: identity, diagonal, symmetric, orthogonal, triangular, sparse. Foundation of linear algebra with applications everywhere.
Mean, Median, Mode
StatisticsThree measures of central tendency. Mean (arithmetic average): sum of values divided by count. Median: middle value when sorted (or average of two middle values for even count). Mode: most frequently occurring value. For symmetric distributions, mean = median = mode. For skewed distributions, they differ. Mean is sensitive to outliers; median is robust. Weighted mean, geometric mean, and harmonic mean are variants.
Modular Arithmetic
Number TheoryArithmetic where numbers wrap around after reaching a modulus. a mod n gives the remainder when a is divided by n. Clock arithmetic is mod 12. Properties: (a+b) mod n = ((a mod n) + (b mod n)) mod n (similarly for multiplication). Applications: cryptography (RSA, Diffie-Hellman), hash functions, error-detecting codes, random number generators, calendar calculations.
Normal Distribution
StatisticsThe bell-shaped continuous probability distribution defined by mean mu and standard deviation sigma. 68-95-99.7 rule: approximately 68% of data falls within 1 sigma of mean, 95% within 2 sigma, 99.7% within 3 sigma. The Central Limit Theorem states that the sum of many independent random variables approximates a normal distribution regardless of their individual distributions. Foundation of statistical inference.
Orthogonal
Linear AlgebraPerpendicular. Two vectors are orthogonal if their dot product is zero: u . v = 0. Orthogonal matrix: Q such that Q^T = Q^(-1), preserves lengths and angles (rotation/reflection). Orthogonal basis: a set of mutually perpendicular basis vectors. Gram-Schmidt process converts a linearly independent set into an orthogonal (or orthonormal) set. Orthogonality is central to least squares, Fourier analysis, and quantum mechanics.
P-value
StatisticsIn hypothesis testing, the probability of obtaining results at least as extreme as the observed results, assuming the null hypothesis is true. Small p-value (< alpha) suggests the data is inconsistent with H0, leading to rejection. Common alpha: 0.05 (5%), 0.01 (1%), 0.001 (0.1%). P-value is NOT the probability that H0 is true (common misconception). A significant p-value does not necessarily imply practical significance.
Permutation
CombinatoricsAn arrangement of objects in a specific order. The number of permutations of n objects is n!. The number of permutations of k objects from n is P(n,k) = n! / (n-k)!. With repetition: n^k (each of k positions has n choices). Permutations with identical objects: n! / (n1! * n2! * ... * nk!) where n_i are counts of each identical type. Different from combination (where order does not matter).
Polynomial
AlgebraAn expression consisting of variables and coefficients using only addition, subtraction, multiplication, and non-negative integer exponents. General form: a_n*x^n + a_(n-1)*x^(n-1) + ... + a_1*x + a_0. Degree: highest exponent with nonzero coefficient. Fundamental Theorem of Algebra: degree-n polynomial has exactly n roots (counting multiplicity, in C). Operations: addition, multiplication, division (long or synthetic), factoring.
Prime Number
Number TheoryA natural number greater than 1 whose only positive divisors are 1 and itself: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, .... The Fundamental Theorem of Arithmetic: every integer > 1 has a unique prime factorization. Euclid proved there are infinitely many primes. The Prime Number Theorem: the number of primes up to n is approximately n/ln(n). Open problems: Goldbach conjecture, twin prime conjecture, Riemann hypothesis. Applications: cryptography (RSA).
Probability
ProbabilityA measure of the likelihood of an event, ranging from 0 (impossible) to 1 (certain). P(A) = (favorable outcomes) / (total outcomes) for equally likely outcomes. Axioms (Kolmogorov): P(S) = 1 (sample space), P(A) >= 0, P(A union B) = P(A) + P(B) for disjoint events. Conditional probability: P(A|B) = P(A and B)/P(B). Bayes theorem: P(A|B) = P(B|A)*P(A)/P(B). Independence: P(A and B) = P(A)*P(B).
Proof
FoundationsA logical argument establishing the truth of a mathematical statement beyond any doubt. Types: direct proof, proof by contradiction (assume negation, derive contradiction), proof by induction (base case + inductive step), proof by contrapositive, constructive proof (exhibit an example), non-constructive (prove existence without construction). Mathematical proofs are the gold standard of certainty in human knowledge.
Quadratic
AlgebraA polynomial of degree 2: ax^2 + bx + c where a != 0. Graph is a parabola opening up (a > 0) or down (a < 0). Vertex at x = -b/(2a). Roots found by: factoring, completing the square, quadratic formula. Discriminant D = b^2 - 4ac: D > 0 (two real roots), D = 0 (one repeated root), D < 0 (two complex conjugate roots). Most-studied polynomial type.
Radian
TrigonometryA unit of angle measurement: the angle subtended at the center of a circle by an arc equal in length to the radius. Full circle = 2*pi radians = 360 degrees. Conversions: radians = degrees * pi/180, degrees = radians * 180/pi. Key values: pi/6 = 30 degrees, pi/4 = 45 degrees, pi/3 = 60 degrees, pi/2 = 90 degrees. Calculus formulas for trigonometric functions require radians.
Regression
StatisticsA statistical method for modeling the relationship between a dependent variable and one or more independent variables. Linear regression: y = beta_0 + beta_1*x + epsilon, minimizes sum of squared residuals (OLS). Multiple regression: y = beta_0 + beta_1*x_1 + ... + beta_p*x_p. Polynomial regression: includes higher powers of x. R^2 measures goodness of fit. Assumptions: linearity, independence, homoscedasticity, normality of residuals.
Riemann Hypothesis
Number TheoryThe conjecture that all nontrivial zeros of the Riemann zeta function zeta(s) = sum(1/n^s) have real part 1/2. Formulated in 1859, it remains one of the most important unsolved problems in mathematics (Millennium Prize Problem, $1M reward). If true, it would have deep implications for the distribution of prime numbers. Computationally verified for the first 10 trillion zeros but no proof exists.
Ring
Abstract AlgebraAn algebraic structure with two binary operations (addition and multiplication) satisfying: (R, +) is an abelian group, multiplication is associative, and multiplication distributes over addition. Examples: integers (Z), polynomials (Z[x]), matrices (M_n), modular arithmetic (Z/nZ). A commutative ring with identity and no zero divisors is an integral domain. A field is a commutative ring where every nonzero element has a multiplicative inverse.
Scalar
Linear AlgebraA quantity with magnitude only, no direction (as opposed to a vector). Examples: temperature, mass, speed, energy. In linear algebra: elements of the field over which a vector space is defined (typically real or complex numbers). Scalar multiplication: multiplying a vector by a scalar scales its magnitude and possibly reverses its direction (negative scalar).
Series
CalculusThe sum of terms of a sequence: S = sum_{n=1}^{infinity} a_n. Partial sums S_N = sum_{n=1}^{N} a_n. The series converges if the sequence of partial sums converges. Convergence tests: nth-term test (diverges if a_n does not approach 0), geometric series, p-series, comparison, limit comparison, ratio, root, integral, alternating series. Power series: sum a_n*x^n, converges in a radius of convergence R. Taylor series: represents functions as power series.
Set
Set TheoryA well-defined collection of distinct objects (elements/members). Notation: A = {1, 2, 3}, x in A. Operations: union (A union B), intersection (A intersection B), complement (A^c), difference (A \ B), Cartesian product (A x B). Special sets: empty set, natural numbers N, integers Z, rationals Q, reals R, complex C. Set theory (Cantor, Zermelo-Fraenkel) is the foundation of modern mathematics.
Standard Deviation
StatisticsA measure of the spread (dispersion) of a dataset: sigma = sqrt(variance) = sqrt((1/N) * sum(x_i - mu)^2) for population, s = sqrt((1/(n-1)) * sum(x_i - x_bar)^2) for sample. Small sigma means data points are close to the mean; large sigma means spread out. For normal distributions: 68% within 1 sigma, 95% within 2 sigma, 99.7% within 3 sigma.
Supremum
AnalysisThe least upper bound (lub) of a set S: the smallest number that is greater than or equal to every element of S. Notation: sup(S). The supremum may or may not be in S. Example: sup((0,1)) = 1, but 1 is not in (0,1). The Completeness Axiom of the reals: every nonempty subset of R that is bounded above has a supremum in R. This axiom distinguishes R from Q and is the foundation of real analysis.
Symmetry
GeometryA transformation that leaves an object unchanged. Types: reflective (mirror symmetry), rotational (rotation by an angle), translational (shift in space), glide reflection. Symmetry group: the set of all symmetries of an object forms a group. Examples: equilateral triangle has 6 symmetries (D_3), square has 8 (D_4), circle has infinitely many. Noether theorem: every continuous symmetry in physics corresponds to a conservation law.
Taylor Series
CalculusA representation of a function as an infinite sum of terms calculated from its derivatives at a single point: f(x) = sum_{n=0}^{inf} f^(n)(a)/n! * (x-a)^n. Maclaurin series: Taylor series centered at a = 0. Key examples: e^x = sum x^n/n!, sin(x) = sum (-1)^n x^(2n+1)/(2n+1)!, cos(x) = sum (-1)^n x^(2n)/(2n)!, 1/(1-x) = sum x^n for |x| < 1.
Tensor
Linear AlgebraA multidimensional generalization of vectors and matrices. A scalar is a rank-0 tensor, a vector is rank-1, a matrix is rank-2, and higher ranks extend the pattern. Tensors transform according to specific rules under coordinate changes. Applications: general relativity (metric tensor, Riemann curvature tensor), continuum mechanics (stress tensor), machine learning (multi-dimensional arrays in neural networks, TensorFlow).
Theorem
FoundationsA mathematical statement that has been rigorously proved from axioms and previously established theorems using logical deduction. Famous theorems: Pythagorean theorem, Fundamental Theorem of Calculus, Fundamental Theorem of Algebra, Prime Number Theorem, Central Limit Theorem, Fermat Last Theorem (proved 1995 by Wiles), Four Color Theorem. A proved conjecture becomes a theorem.
Topology
TopologyThe branch of mathematics studying properties preserved under continuous deformations (stretching, bending, but not tearing or gluing). A topological space is a set with a collection of open sets satisfying axioms. Key concepts: homeomorphism (continuous bijection with continuous inverse), compactness, connectedness, genus (number of holes). Famous result: a coffee mug is topologically equivalent to a donut (both have genus 1).
Transformation
GeometryA function that maps a geometric figure to another figure. Types: rigid (preserves distance): translation, rotation, reflection, glide reflection. Non-rigid: scaling (dilation), shearing, projection, inversion. In linear algebra: linear transformations represented by matrices. In calculus: change of variables. Composition: applying one transformation after another. The set of invertible transformations forms a group.
Variance
StatisticsA measure of how spread out a dataset is from its mean: Var(X) = E[(X - mu)^2] = E[X^2] - (E[X])^2. Population variance: sigma^2 = (1/N)*sum(x_i - mu)^2. Sample variance: s^2 = (1/(n-1))*sum(x_i - x_bar)^2 (Bessel correction). Properties: Var(aX + b) = a^2*Var(X), Var(X + Y) = Var(X) + Var(Y) if independent. Standard deviation is the square root of variance.
Vector
Linear AlgebraA quantity with both magnitude and direction. Representation: as coordinates (a_1, a_2, ..., a_n) in R^n, as arrow from origin. Operations: addition (component-wise), scalar multiplication, dot product (a . b), cross product (a x b, 3D only). Magnitude: ||v|| = sqrt(sum v_i^2). Unit vector: v/||v||. Linear combination: c_1*v_1 + c_2*v_2 + .... Vectors are the fundamental objects of linear algebra.
Vector Space
Linear AlgebraA set V with two operations (vector addition, scalar multiplication) satisfying 8 axioms: closure under both operations, commutativity and associativity of addition, existence of zero vector and additive inverses, distributive laws, and scalar multiplication identity. Examples: R^n, polynomials of degree at most n, continuous functions on [a,b], matrices. Key concepts: subspace, basis, dimension, span, linear independence.
Z-Score
StatisticsA standardized score indicating how many standard deviations a data point is from the mean: z = (x - mu) / sigma. z = 0: at the mean. z > 0: above mean. z < 0: below mean. z-scores allow comparison across different scales. In a standard normal distribution (mu=0, sigma=1): z-table gives cumulative probabilities. Example: z = 1.96 corresponds to the 97.5th percentile (used for 95% confidence intervals).
Zero
Number TheoryThe additive identity: a + 0 = a for any number a. The number that represents nothing, emptiness, or the starting point on the number line. Historical development: originated in India (Brahmagupta, 628 AD), transmitted to Europe via Arabic mathematics. Properties: a * 0 = 0, a/0 is undefined, 0! = 1, 0^0 is conventionally 1 (though debated). Division by zero is the most common mathematical error. Zero is both the smallest non-negative integer and the largest non-positive integer.
Zeno Paradox
FoundationsA set of philosophical problems posed by Zeno of Elea (5th century BC) about motion and infinity. Most famous: Achilles and the Tortoise (Achilles can never overtake a tortoise with a head start, because he must first reach where the tortoise was, by which time it has moved). Resolved by calculus: the infinite series 1/2 + 1/4 + 1/8 + ... = 1 shows that infinitely many steps can sum to a finite value. Demonstrates the need for rigorous treatment of infinity and limits.
Bayes Theorem
ProbabilityP(A|B) = P(B|A)*P(A) / P(B). Relates conditional probabilities, allowing us to update the probability of a hypothesis given evidence. P(A): prior probability, P(A|B): posterior probability, P(B|A): likelihood, P(B): evidence. Foundation of Bayesian statistics and inference. Applications: spam filters, medical diagnosis, machine learning (Naive Bayes classifier), legal reasoning, A/B testing.
Central Limit Theorem
StatisticsIf you take sufficiently large random samples from a population with mean mu and standard deviation sigma, the sampling distribution of the sample mean approaches a normal distribution N(mu, sigma/sqrt(n)) regardless of the population distribution. Formally: (X_bar - mu) / (sigma/sqrt(n)) -> N(0,1) as n -> infinity. Rule of thumb: n >= 30 is usually sufficient. Foundation of statistical inference, confidence intervals, and hypothesis testing.
Confidence Interval
StatisticsAn interval estimate of a population parameter. A 95% CI means: if we repeated the sampling process many times, 95% of the constructed intervals would contain the true parameter. For the mean: x_bar +/- z*(sigma/sqrt(n)). Common z-values: 1.645 (90% CI), 1.96 (95% CI), 2.576 (99% CI). Wider intervals give more confidence but less precision. NOT the probability that the parameter is in the interval (frequentist interpretation).
Correlation
StatisticsA measure of the linear relationship between two variables. Pearson correlation r ranges from -1 (perfect negative) to +1 (perfect positive). r = 0 indicates no linear relationship (but there may be a nonlinear one). r = cov(X,Y) / (sigma_X * sigma_Y). Correlation does NOT imply causation. Spearman rank correlation is a non-parametric alternative. R^2 = r^2 gives the proportion of variance explained.
Expected Value
ProbabilityThe long-run average of a random variable. Discrete: E[X] = sum x_i * P(X = x_i). Continuous: E[X] = integral x * f(x) dx. Properties: E[aX + b] = a*E[X] + b, E[X + Y] = E[X] + E[Y] (always, even if not independent), E[XY] = E[X]*E[Y] (only if independent). Also called the mean or expectation. Foundation of decision theory, gambling analysis, insurance pricing.
FAQ (25 Questions)
Try It Yourself
Use these embedded calculators to apply the formulas from this reference.
Try it yourself
Unit Converter
Raw Data Downloads
Citations and Sources
Try These Tools for Free
Put this knowledge into practice with our browser-based tools. No signup needed.
Calculator
Full scientific calculator with arithmetic, trigonometry, logarithms, and calculation history. Keyboard support.
% Calculator
Calculate percentages, percentage change, and percentage of a number.
Base Converter
Convert numbers between binary, octal, decimal, and hexadecimal bases.
Binary
Convert text to binary, hex, octal, and decimal representations and back.
Random Number
Generate random numbers, dice rolls, coin flips, and lottery picks.
Unit Convert
Convert between length, weight, temperature, speed, area, volume, storage, and time units.
Graph Plot
Plot y = f(x) for basic math functions.
Related Research Reports
The Complete Unit Conversion Reference 2026: 400+ Conversion Factors
The definitive unit conversion reference for 2026. 400+ conversion factors across 14 categories: length, mass, volume, temperature, speed, area, pressure, energy, power, frequency, data storage, time, angle, and force. Searchable, sortable, CSV downloadable master reference table. 28,000+ words.
The Complete Data Structures & Algorithms Guide 2026: Arrays, Trees, Graphs, Hash Tables & Big-O
The definitive data structures reference for 2026. Covers arrays, linked lists, stacks, queues, trees, graphs, hash tables, heaps, tries, sorting algorithms, and Big-O complexity analysis. 28,000+ words.
