Formulas.
Formulas.
Use any calculator as-is or remix it as your own.
/
Formulas
- Accelerationa = (v − v₀) / t — average acceleration from change in velocity over time.
- Angle Conversion Degrees RadiansConvert between degrees and radians: rad = deg × π/180.
- Arc LengthFind the length of a circular arc: s = r × θ (θ in radians).
- Arithmetic Sequence nth TermFind the nth term of an arithmetic sequence: aₙ = a₁ + (n−1)·d.
- Arithmetic Series SumSum the first n terms of an arithmetic sequence: Sₙ = n/2 · (a₁ + aₙ).
- Bayes' TheoremP(A|B) = P(B|A) · P(A) / P(B).
- Binomial DistributionProbability of exactly k successes in n independent trials: P = C(n,k)·pᵏ·(1−p)^(n−k).
- Binomial CoefficientCompute the binomial coefficient C(n, k) = n! / (k! · (n−k)!).
- Calculus ExplorerDifferentiate and integrate any function — the engine's `derivative()` and `integral()` return results you can graph and evaluate.
- Circle AreaFind the area of a circle from its radius: A = π × r².
- Circle CircumferenceFind the circumference of a circle from its radius: C = 2 × π × r.
- Completing the SquareConvert ax² + bx + c into a(x − h)² + k form.
- Conditional ProbabilityCompute P(A|B) = P(A ∩ B) / P(B).
- Cone Surface AreaFind the surface area of a cone (lateral + base).
- Cone VolumeFind the volume of a cone: V = (1/3) × π × r² × h.
- CovarianceCompute the population covariance of two 5-point datasets: cov(X,Y) = Σ(xᵢ−x̄)(yᵢ−ȳ) / n.
- Cube VolumeFind the volume and surface area of a cube from its side length.
- Cylinder Surface AreaFind the total surface area of a closed cylinder: A = 2πr(r + h).
- Cylinder VolumeFind the volume of a cylinder: V = π × r² × h.
- Definite Integral — Power RuleEvaluate ∫ₐᵇ c·xⁿ dx = c·(b^(n+1) − a^(n+1))/(n+1).
- Derivative — Chain RuleEvaluate (f∘g)'(x) = f'(g(x)) · g'(x).
- Derivative — Power RuleEvaluate d/dx [a·xⁿ] = a·n·x^(n−1) at a given point.
- Derivative — Product RuleEvaluate (f·g)' = f'·g + f·g' at a given x using user-supplied f, g, f', g'.
- DiscriminantCompute the discriminant b² − 4ac of a quadratic.