Math & Science Calculators

Scientific, matrix, stats, geometry, percentages, fractions, physics, and unit converters.

✅ Expert Reviewed
🔒 Free & Private
⚡ 2026 Updated
📊 50+ Calculators

Scientific Calculator

Evaluate mathematical expressions with trigonometry, logarithms, and constants.

Result
0
History
No history yet.

Scientific Notation Converter

Convert numbers to scientific format, engineering notation, and determine significant figures.

Scientific Notation
1.2345 × 10^7
Engineering Notation
12.345 × 10^6
Significant Figures
5

Matrix Operations

Add, subtract, and multiply 3x3 matrices.

Result Matrix
19, 22 43, 50

Matrix Properties

Find the determinant, inverse, transpose, and trace of a matrix.

Determinant
-2
Trace
5
Inverse
-2, 1 1.5, -0.5
Transpose
1, 3 2, 4

Descriptive Statistics

Calculate mean, median, mode, variance, standard deviation, and more from a dataset.

Count (n)
10
Mean (μ)
5
Median
5
Mode
5
Min / Max
1 / 9
Range
8
Sample Std Dev (s)
2.58
Sample Variance (s²)
6.67
Geometric Mean
4.06
IQR (Q3 - Q1)
4
Skewness
0
Kurtosis
-1.2

Probability & Distributions

Calculate Permutations, Combinations, Binomial, and Normal distributions.

Permutations (nPr)
720
Combinations (nCr)
120
Binomial P(X=k)
0.1172
Normal Area < Z (Φ)
0.9750

2D Shapes Area & Perimeter

Area
78.54
Perimeter / Circumference
31.42

3D Solids Volume & Surface Area

Volume
523.60
Surface Area
314.16

Triangle Solver

Solve any triangle using SAS, SSS, ASA, or AAS.

Side a / b / c
3 / 4 / 5
Angle A / B / C
36.9° / 53.1° / 90°
Area
6

Percentage Calculators

X% of Y is
30
X is what % of Y
13.33%
% Change (X to Y)
650% Increase
Y + X% / Y - X%
180 / 120

Percent Error & Ratio Solver

Absolute Error
0.2
Percent Error
2%
Ratio Solution (d)
6

Fraction Arithmetic

Add, subtract, multiply, and divide fractions with step-by-step LCD.

Result (Simplified)
5/6
~ 0.8333
Step-by-Step
LCD of 2 and 3 is 6.
3/6 + 2/6 = 5/6.

Number Theory

GCD, LCM, Prime Factorization, and Primality Testing.

GCD (Greatest Common Divisor)
6
LCM (Least Common Multiple)
36
Prime Factorization (A)
2² × 3
Not Prime
Prime Factorization (B)
2 × 3²
Not Prime

Mechanics & Kinematics

Newton's Second Law (F=ma) and 1D Kinematics.

Result
a = 5 m/s²

Energy, Waves & SHM

Result
λ = 0.78 m

Comprehensive Unit Converter

Convert length, mass, temperature, speed, volume, and area.

Converted Value
1.00

01Why Mathematics Is the Language of the Universe

Galileo Galilei declared in 1623: "The universe cannot be read until we have learned the language and become familiar with the characters in which it is written. It is written in mathematical language, and the letters are triangles, circles and other geometric figures, without which means it is humanly impossible to comprehend a single word." Four centuries later, this statement is more true than ever.

Mathematics is not merely a tool for calculation — it is the fundamental structure of physical reality. The inverse-square law governs gravity, electrostatics, and light intensity. The Fourier transform underlies every digital signal from Wi-Fi to MRI machines. The Black-Scholes equation prices trillions of dollars of financial derivatives. Machine learning is at its core matrix algebra, calculus, and probability theory.

At every scale — from the subatomic world described by quantum mechanics to the cosmological web of galaxy filaments — mathematical patterns emerge. The Fibonacci sequence (1, 1, 2, 3, 5, 8, 13...) describes sunflower seed spirals, nautilus shells, and galaxy arm arrangements. The golden ratio φ = (1+√5)/2 ≈ 1.618 appears in art, architecture, and biological proportions. Prime numbers, despite being defined by a simple rule, are distributed in patterns so irregular they encode randomness itself — and form the backbone of RSA cryptography that secures the internet.

This toolkit gives you precise, instant access to all the foundational mathematical operations that professionals, students, and researchers depend on daily — from basic arithmetic to matrix eigenvalues, statistical skewness, and wave physics.

02Scientific Calculator: PEMDAS, Functions & Constants

A scientific calculator is not merely a four-function device — it is a complete mathematical environment. Understanding its operation requires mastering the order of operations (PEMDAS/BODMAS): Parentheses → Exponents → Multiplication/Division (left-to-right) → Addition/Subtraction (left-to-right). The expression 2+3×4 = 14, not 20. The expression 8÷2(2+2) is famously ambiguous because of left-to-right vs. implied multiplication precedence.

Trigonometric Functions: sin(θ), cos(θ), tan(θ) relate the angles and sides of right triangles. On the unit circle, sin(θ) = y-coordinate and cos(θ) = x-coordinate. Key identities: sin²θ + cos²θ = 1 (Pythagorean), sin(2θ) = 2sinθcosθ (double angle), and tan(θ) = sin(θ)/cos(θ). Functions are undefined where the denominator is zero: tan(90°) = undefined, since cos(90°) = 0.

Logarithmic Rules: log(ab) = log(a) + log(b); log(a/b) = log(a) − log(b); log(aⁿ) = n·log(a). The natural logarithm (ln) uses base e. Change of base: log_b(x) = ln(x)/ln(b). Logarithms model phenomena that grow or decay multiplicatively: earthquake magnitudes (Richter), sound intensity (decibels), pH (acidity), and astronomical brightness (magnitudes).

Essential Constants:

  • π (Pi) = 3.14159265358979... — ratio of circumference to diameter of any circle
  • e (Euler's Number) = 2.71828182845904... — base of natural growth/decay; e^x is the only function equal to its own derivative
  • φ (Golden Ratio) = 1.61803398874989... — solution to x² = x + 1
  • √2 = 1.41421356... — length of the diagonal of a unit square; the first known irrational number
  • γ (Euler-Mascheroni) = 0.57721566... — appears in number theory and the prime harmonic series

03Matrix Algebra: From Linear Systems to Neural Networks

A matrix is a rectangular array of numbers organized in rows and columns. Matrices represent linear transformations of space — rotations, scaling, reflections, shears — and are the fundamental data structure of computer graphics, machine learning, and systems of linear equations.

Matrix Operations: Addition/subtraction requires identical dimensions and is element-wise. Multiplication (A×B) requires that columns of A equal rows of B. If A is m×n and B is n×p, the product C is m×p, where C[i][j] = Σ A[i][k]·B[k][j]. This is NOT element-wise and NOT commutative (A×B ≠ B×A in general).

Determinant: For a 2×2 matrix [[a,b],[c,d]]: det = ad − bc. For 3×3, use cofactor expansion along any row: det(A) = a(ei−fh) − b(di−fg) + c(dh−eg). The determinant is the signed volume scaling factor of the linear transformation. If det = 0, the matrix is singular (non-invertible) — the transformation collapses space into a lower dimension.

Inverse: A⁻¹ exists only if det(A) ≠ 0. For 2×2: A⁻¹ = (1/det)·[[d,−b],[−c,a]]. The inverse satisfies A·A⁻¹ = I (identity matrix). Applications: solving Ax = b → x = A⁻¹b.

Eigenvalues & Eigenvectors: For a matrix A, an eigenvector v satisfies Av = λv, where λ is the eigenvalue. They reveal the fundamental "axes" along which a transformation acts as pure scaling. Google's original PageRank was the principal eigenvector of the web's link matrix. In quantum mechanics, observable quantities are eigenvalues of Hermitian operators. In machine learning, Principal Component Analysis (PCA) uses eigenvectors to find the dimensions of maximum variance in high-dimensional data.

Trace: Sum of diagonal elements = sum of all eigenvalues. Invariant under similarity transformations — a fundamental structural property.

04Descriptive Statistics: Turning Raw Numbers Into Insight

Descriptive statistics condense an entire dataset into a compact set of numbers that tell its story. Before any inferential test, you must understand your data's shape, center, and spread.

Measures of Central Tendency: The mean (arithmetic average) is sensitive to outliers — Bill Gates walking into a room of 100 people raises the average wealth dramatically while leaving the median unchanged. The median (middle value when sorted) is robust. The mode (most frequent value) is the only measure applicable to nominal data. The geometric mean = (x₁·x₂·...·xₙ)^(1/n) is the correct average for multiplicative quantities like investment returns and growth rates.

Measures of Spread: Range = max − min (extremely sensitive to outliers). Variance = average squared deviation from mean. Sample variance uses n−1 (Bessel's correction): dividing by n would systematically underestimate the true population variance because the sample mean itself is an estimate. Standard Deviation = √variance — in the same units as the data. IQR (Interquartile Range) = Q3 − Q1 = the middle 50% of data; used to define outliers as values beyond Q1−1.5×IQR or Q3+1.5×IQR (Tukey fences).

Shape Measures: Skewness measures asymmetry. Positive skew means a long right tail (income distribution). Negative skew means a long left tail (exam scores where most people do well). Kurtosis measures tail heaviness. "Leptokurtic" (excess kurtosis > 0) means fat tails with more extreme outliers than a normal distribution — critical knowledge in risk management and finance.

Five-Number Summary: {Min, Q1, Median, Q3, Max} — the basis of box plots, which are the most information-dense single-plot visualization in statistics.

05Probability & Combinatorics: The Mathematics of Chance

Fundamental Counting Principle: If event A can occur in m ways and event B in n ways, they can occur together in m×n ways. This underlies the complexity analysis of algorithms, cryptographic key space calculations, and experimental design.

Permutations (nPr): The number of ordered arrangements of r items chosen from n distinct items. nPr = n!/(n−r)!. A "combination lock" is actually a permutation lock — 1-2-3 is different from 3-2-1. DNA codons: 4 nucleotides taken 3 at a time = 4P3 = 64 possible codons (encoding 20 amino acids + stop signals).

Combinations (nCr): Unordered selections. nCr = n!/[r!(n−r)!]. A poker hand is a combination — the order the cards are dealt doesn't matter. C(52,5) = 2,598,960 possible 5-card hands. The probability of a royal flush = 4/2,598,960 ≈ 0.000154%.

Binomial Distribution: Models the number of successes k in n independent Bernoulli trials with success probability p: P(X=k) = C(n,k)·pᵏ·(1−p)^(n−k). Applications: defective parts in a batch, clinical trial outcomes, A/B test conversions.

Normal Distribution (Bell Curve): Defined by mean μ and standard deviation σ. The empirical rule: 68.27% of data falls within ±1σ, 95.45% within ±2σ, 99.73% within ±3σ. The Central Limit Theorem states that the mean of any sufficiently large sample (n > 30) is approximately normally distributed, regardless of the population's original distribution — the most profound result in statistics.

Birthday Paradox: In a room of just 23 people, P(at least two share a birthday) ≈ 50.7%. By 70 people, it reaches 99.9%. This counterintuitive result explains hash collisions in cryptography and database indexing — the probability of two random strings colliding in a hash space grows much faster than intuition suggests.

06Geometry Master Class: 2D Shapes, 3D Solids & Triangle Solving

2D Area Formulas:

Circle
A = πr² ; C = 2πr
Rectangle
A = lw ; P = 2(l+w)
Triangle
A = ½bh ; P = a+b+c
Trapezoid
A = ½(a+b)h
Regular n-gon
A = (nr²/4)·cot(π/n)
Ellipse
A = πab ; C ≈ π[3(a+b)−√((3a+b)(a+3b))]

3D Volume & Surface Area:

Sphere
V = (4/3)πr³ ; SA = 4πr²
Cylinder
V = πr²h ; SA = 2πr(r+h)
Cone
V = (1/3)πr²h ; SA = πr(r+l)
Rectangular Prism
V = lwh ; SA = 2(lw+lh+wh)

Triangle Solver — Which Law to Use:

  • Pythagorean theorem (c² = a² + b²) — right triangles only
  • Law of Cosines (c² = a² + b² − 2ab·cosC) — SAS or SSS cases; a generalization of the Pythagorean theorem
  • Law of Sines (a/sinA = b/sinB = c/sinC) — ASA, AAS, and the ambiguous SSA case
  • Heron's Formula (A = √[s(s−a)(s−b)(s−c)]) — area from three sides alone; s = (a+b+c)/2

The SSA (ambiguous) case can produce 0, 1, or 2 valid triangles, requiring careful checking using the discriminant of the Law of Sines. Our triangle solver detects this automatically and reports all valid solutions.

07Scientific Notation: The Grammar of Extreme Scale

Scientific notation expresses any number as M × 10ⁿ where 1 ≤ |M| < 10. It is not just a convenience — it is the only unambiguous way to represent precision in measurements.

Why Trailing Zeros Are Ambiguous: The measurement "300 meters" has uncertain significant figures. Does it have 1 sig fig (approximately 300) or 3 sig figs (exactly 300.000)? Written as 3×10² (1 sig fig) or 3.00×10² (3 sig figs), the precision is unambiguous.

Significant Figures Rules:

  • All non-zero digits are significant: 247 → 3 sig figs
  • Zeros between non-zeros are significant: 4,006 → 4 sig figs
  • Leading zeros are never significant: 0.0034 → 2 sig figs
  • Trailing zeros after a decimal ARE significant: 3.400 → 4 sig figs
  • Multiplication/Division: result has as many sig figs as the FEWEST in the inputs
  • Addition/Subtraction: result has as many decimal places as the FEWEST in the inputs

Engineering Notation restricts the exponent to multiples of 3: 10⁻⁹ (nano), 10⁻⁶ (micro), 10⁻³ (milli), 10³ (kilo), 10⁶ (mega), 10⁹ (giga), 10¹² (tera). This aligns with SI prefixes and is preferred in electronics and telecommunications.

Real-World Scale: A hydrogen atom radius ≈ 5.3×10⁻¹¹ m. Observable universe radius ≈ 4.4×10²⁶ m. The ratio is ≈ 10³⁷ — you simply cannot compare these magnitudes without scientific notation.

08Fraction Arithmetic & Number Theory Fundamentals

Adding Fractions: To add a/b + c/d: find LCD = LCM(b,d), convert both fractions, add numerators, simplify. Example: 3/4 + 2/5 → LCD=20 → 15/20 + 8/20 = 23/20 = 1 3/20. Simplification uses GCD: gcd(23,20)=1, already in lowest terms.

Euclidean Algorithm (GCD): The most efficient algorithm for computing GCD. GCD(a,b) = GCD(b, a mod b), repeated until remainder = 0. Example: GCD(48,18): GCD(48,18) → GCD(18,12) → GCD(12,6) → GCD(6,0) = 6. Time complexity: O(log(min(a,b))) — vastly faster than trial division for large numbers.

Prime Factorization: Every integer n > 1 is uniquely expressible as a product of primes (Fundamental Theorem of Arithmetic). 360 = 2³ × 3² × 5. This uniqueness is why primes are the "atoms" of arithmetic. GCD and LCM are easily computed from prime factorizations: GCD takes minimum exponents, LCM takes maximum.

The Sieve of Eratosthenes finds all primes up to n in O(n log log n) time: mark all multiples of 2, 3, 5, 7... as composite. The remaining unmarked numbers are prime. There are 25 primes below 100, 168 below 1,000, and 78,498 below 1,000,000.

Applications in Cryptography: RSA encryption relies on the computational difficulty of factoring the product of two large primes (each ~2,048 bits). Multiplying them takes microseconds; factoring the product would take millions of years on classical hardware. Quantum computers (Shor's algorithm) would break RSA — the reason post-quantum cryptography is a critical research area.

09Physics Calculator: Mechanics, Energy & Wave Phenomena

Newton's Three Laws: (1) An object at rest stays at rest unless acted upon by a net external force. (2) ΣF = ma — the net force equals mass times acceleration. (3) For every action, there is an equal and opposite reaction. Law 2 is the workhorse: solve for F (given m,a), m (given F,a), or a (given F,m). On Earth, g = 9.80665 m/s².

Kinematic Equations (constant acceleration):

  • v = v₀ + at
  • x = x₀ + v₀t + ½at²
  • v² = v₀² + 2a(x−x₀)
  • x = x₀ + ½(v+v₀)t

Each equation contains 4 of the 5 kinematic variables (x, v, v₀, a, t). Given 3 knowns, pick the equation missing the unknown variable. Projectile motion decouples into independent horizontal (a=0) and vertical (a=−g) motions, sharing only time t as the coupling variable.

Energy: Kinetic energy KE = ½mv². Gravitational PE = mgh. Elastic PE (spring) = ½kx² where k is the spring constant (N/m) and x is displacement. Conservation of energy: KE₁ + PE₁ = KE₂ + PE₂ (frictionless systems). Work W = F·d·cosθ. Power P = W/t = Fv.

Simple Harmonic Motion (SHM): Hooke's Law F = −kx gives SHM with angular frequency ω = √(k/m), period T = 2π/ω = 2π√(m/k), frequency f = 1/T. A 0.5 kg mass on a k=200 N/m spring: T = 2π√(0.5/200) = 0.314 s ≈ 3.18 Hz.

Wave Mechanics: v = fλ (wave speed = frequency × wavelength). For light in vacuum: v = c = 3×10⁸ m/s. A 440 Hz (concert A) sound wave in air (v=343 m/s) has λ = 343/440 ≈ 0.78 m. The Doppler Effect: f_obs = f_s × (v ± v_obs)/(v ∓ v_src). The ± depends on whether observer/source are approaching or receding.

10Percentages, Ratios & Proportions — Universal Problem Solvers

Core Percentage Operations:

  • X% of Y = (X/100) × Y — used for discounts, tax, tip calculations
  • X is what% of Y = (X/Y) × 100 — used for score percentages, market share
  • % Change from A to B = ((B−A)/A) × 100 — positive = increase, negative = decrease
  • Add X% to Y = Y × (1 + X/100) — e.g., price after tax; compound growth: Y × (1+r)ⁿ

Percent Error: The standard measure of measurement accuracy in science: |Measured − True| / |True| × 100%. It is dimensionless and scale-independent — 0.5% error means the same thing whether you're measuring millimeters or kilometers. Systematic error (bias) is not reduced by averaging; random error is.

Ratio & Proportion: A ratio a:b = c:d can be solved for any unknown: d = bc/a. Cross-multiplication is the key operation. Ratios appear in map scales (1:25,000), pharmaceutical dosages (mg/kg body weight), and aspect ratios (16:9 for HD video). Golden ratio φ ≈ 1.618 satisfies a:b = (a+b):a, meaning the ratio of the whole to the larger part equals the ratio of the larger to the smaller.

Inverse Proportion: When x·y = k (constant), x and y are inversely proportional. Examples: speed × time = constant distance; Boyle's Law P × V = constant for ideal gases at fixed temperature; capacitance × voltage = constant charge.

11Unit Conversion: SI, Imperial & Scientific Units

The International System of Units (SI) defines 7 base units: metre (length), kilogram (mass), second (time), ampere (electric current), kelvin (temperature), mole (amount of substance), candela (luminous intensity). All other scientific units are derived from these. Dimensional analysis — tracking units through calculations — is the most powerful error-checking technique in physics and engineering.

The Mars Climate Orbiter Disaster (1999): NASA lost a $327 million spacecraft because one engineering team used pound-force·seconds while another expected newton·seconds — a factor of 4.45 off. The spacecraft entered Mars' atmosphere at the wrong angle and was destroyed. Unit conversion errors have crashed aircraft, collapsed bridges, and caused medication overdoses. Our unit converter handles length, mass, temperature, speed, area, and volume conversions with full precision.

Temperature Conversion: °F = °C × 9/5 + 32; °C = (°F − 32) × 5/9; K = °C + 273.15. Absolute zero = 0 K = −273.15°C = −459.67°F — the theoretical minimum temperature where molecular motion stops.

Key Conversion Factors:

1 mile
= 1.60934 km = 5,280 ft = 1,760 yards
1 pound
= 0.453592 kg = 16 oz
1 gallon (US)
= 3.78541 litres = 231 cubic inches
1 atm
= 101,325 Pa = 14.696 psi = 760 mmHg

12Calculator Accuracy, Floating Point & Significant Figures

Modern calculators use IEEE 754 double-precision floating point, which stores numbers in 64 bits: 1 sign bit, 11 exponent bits, 52 mantissa bits. This gives approximately 15–17 significant decimal digits of precision and a range of roughly 10⁻³⁰⁸ to 10³⁰⁸.

The Famous 0.1 + 0.2 ≠ 0.3 Problem: In binary, 0.1 cannot be represented exactly — it's a repeating binary fraction (like 1/3 in decimal). So 0.1 + 0.2 = 0.30000000000000004 in JavaScript. This is not a bug — it is mathematically correct IEEE 754 behavior. Solutions: use integer arithmetic (work in cents, not dollars), round to a fixed decimal place, or use decimal libraries for financial calculations.

Catastrophic Cancellation: Subtracting two nearly equal numbers can destroy significant figures. Example: computing sin(x) − sin(y) when x ≈ y. The individual values are accurate to 15 digits, but their difference may only be accurate to 5 digits. Rewrite using sum-to-product identities to avoid this.

Significant Figure Arithmetic Rules Revisited: When computing a chain of operations, carry at least one extra digit through intermediate steps and round only at the final answer. Premature rounding introduces errors that compound multiplicatively through subsequent operations — a well-known source of discrepancies between hand calculations and computer results.

13Frequently Asked Questions

What is the order of operations and how does your scientific calculator handle it?
The order of operations (PEMDAS/BODMAS) is the universal rule for evaluating mathematical expressions: Parentheses first, then Exponents, then Multiplication and Division left-to-right, then Addition and Subtraction left-to-right. Our scientific calculator implements a full recursive descent parser that handles nested parentheses to arbitrary depth, implicit multiplication (2u03c0 = 2 u00d7 u03c0), and all standard functions. For example, 2+3u00d74 correctly evaluates to 14, not 20. Always use parentheses to make intent explicit in complex expressions u2014 it prevents ambiguity and matches what textbooks, CAS systems, and every standard since ISO 80000-2 specify.
How do I calculate the determinant of a 3u00d73 matrix?
The determinant of a 3u00d73 matrix is calculated using cofactor expansion along any row or column. For matrix A = [[a,b,c],[d,e,f],[g,h,i]], det(A) = a(eiu2212fh) u2212 b(diu2212fg) + c(dhu2212eg). This is the Leibniz formula using signed cofactors. Our calculator handles matrices up to 4u00d74 using LU decomposition which is numerically stable for larger matrices. The determinant is critical for: testing invertibility (detu22600 means invertible), computing cross products, solving Cramer's rule systems, and calculating signed volumes. A zero determinant means the rows are linearly dependent u2014 the matrix is singular and cannot be inverted.
What is the difference between population standard deviation and sample standard deviation?
Population standard deviation (u03c3) uses N in the denominator and measures spread for the entire population. Sample standard deviation (s) uses Nu22121 (Bessel's correction) because when estimating population u03c3 from a sample, the sample mean is itself an estimate that introduces bias u2014 dividing by Nu22121 corrects this and produces an unbiased estimator of population variance. Rule of thumb: if your data IS the entire population (e.g., all 12 months of a year's data), use u03c3. If your data is a subset of a larger population you are trying to characterize (e.g., survey of 500 from millions), use s. Our stats calculator shows both clearly labeled.
How do I find the area of an irregular polygon?
The Shoelace Formula (Gauss's area formula) calculates the area of any non-self-intersecting polygon given vertex coordinates: Area = u00bd|u03a3(xu1d62yu1d62u208au2081 u2212 xu1d62u208au2081yu1d62)|. For a triangle with vertices (0,0), (4,0), (2,3): Area = u00bd|(0u00d70u22124u00d70)+(4u00d73u22122u00d70)+(2u00d70u22120u00d73)| = u00bd|0+12+0| = 6 sq units. For standard shapes: our geometry calculator handles circles, rectangles, triangles (all types), parallelograms, trapezoids, regular polygons (n-sided), ellipses, sectors, and segments with full formula display.
What is scientific notation and when must it be used?
Scientific notation expresses any number as M u00d7 10u207f where 1 u2264 |M| < 10 and n is an integer. It is mandatory in physics, chemistry, engineering, and astronomy because it: (1) prevents trailing-zero ambiguity (the number 300 has uncertain significant figures, but 3.00u00d710u00b2 has exactly 3), (2) makes magnitude comparison instant (10u00b2u00b3 vs 10u207bu2075 is immediately comparable), and (3) makes multiplication/division trivial (multiply mantissas, add/subtract exponents). Important: significant figures propagate u2014 in 6.02u00d710u00b2u00b3 u00d7 1.38u00d710u207bu00b2u00b3 = 8.31 J/molu00b7K (R, the gas constant), the answer has 3 sig figs matching the least precise input.
How do I add and subtract fractions with different denominators?
To add or subtract fractions with different denominators: (1) Find the Least Common Denominator (LCD) = LCM of all denominators. (2) Convert each fraction to an equivalent fraction with the LCD. (3) Add or subtract the numerators, keeping the LCD. (4) Simplify using GCD. Example: u00be + u2155. LCD = LCM(4,5) = 20. Convert: 15/20 + 8/20 = 23/20 = 1u00b3u2044u2082u2080. Our fraction calculator shows every step and always returns results in lowest terms. For mixed numbers, convert to improper fractions first: 2u00be = 11/4.
What is Newton's Second Law and how do I apply it to multiple-force problems?
Newton's Second Law: u03a3F = ma (net force = mass u00d7 acceleration). For multiple forces, you must vectorially sum all forces before dividing by mass. Example: a 5 kg block on a frictionless surface with Fu2081=20N right and Fu2082=8N left: u03a3F = 20u22128 = 12N, a = 12/5 = 2.4 m/su00b2. With friction: add u2212u03bcmg opposing motion. With an incline at angle u03b8: component along slope = mg sinu03b8 (down), normal force = mg cosu03b8, friction = u03bcmg cosu03b8. Our physics mechanics calculator handles force, acceleration, velocity, and momentum problems with unit conversions built in.
What are the kinematic equations and when does each apply?
The four kinematic equations for constant acceleration are: (1) v = vu2080 + at; (2) x = xu2080 + vu2080t + u00bdatu00b2; (3) vu00b2 = vu2080u00b2 + 2a(xu2212xu2080); (4) x = xu2080 + u00bd(v+vu2080)t. They all assume constant acceleration. Choose based on what's known and unknown: if time is unknown, use equation 3. If final velocity is unknown, use equation 2. Projectile motion: treat horizontal (a=0, constant velocity) and vertical (a=u22129.8 m/su00b2) independently u2014 they share only time as a coupling variable.
How does the Law of Cosines differ from the Pythagorean theorem?
The Pythagorean theorem (cu00b2 = au00b2 + bu00b2) is a special case of the Law of Cosines (cu00b2 = au00b2 + bu00b2 u2212 2abu00b7cos(C)) when angle C = 90u00b0, because cos(90u00b0) = 0. The Law of Cosines works for ALL triangles u2014 acute, obtuse, and right u2014 and is the go-to formula when you know: (1) two sides and the included angle (SAS), or (2) all three sides (SSS) and need an angle. The Law of Sines (a/sin A = b/sin B = c/sin C) is better for ASA, AAS, and the ambiguous SSA case. Our triangle solver detects which case applies and chooses the appropriate formula automatically.
What is the difference between permutations and combinations?
Permutations count ordered arrangements; combinations count unordered selections. nPr = n!/(nu2212r)! counts the ways to arrange r items from n when ORDER MATTERS (e.g., ranking 3 from 10 athletes). nCr = n!/[r!(nu2212r)!] counts the ways to choose r items from n when ORDER DOES NOT MATTER (e.g., choosing a committee of 3 from 10). Memory trick: combination lock u2192 actually a permutation lock because 1-2-3 u2260 3-2-1. Combinations appear in binomial theorem coefficients (Pascal's triangle), probability (card hands), and statistics (confidence intervals).
How do I calculate wave frequency, wavelength, and wave speed?
The fundamental wave equation: v = fu03bb, where v = wave speed (m/s), f = frequency (Hz = cycles/s), u03bb = wavelength (m). Period T = 1/f. In a vacuum, light travels at c = 3u00d710u2078 m/s. A 500 nm green photon has frequency f = 3u00d710u2078 / 500u00d710u207bu2079 = 6u00d710u00b9u2074 Hz. For sound in air at 20u00b0C: v u2248 343 m/s. The Doppler effect shifts observed frequency: f_obs = f_source u00d7 (vu00b1v_observer)/(vu2213v_source). Our wave calculator handles all these relationships with unit conversions.
What are significant figures and how do arithmetic operations change them?
Significant figures (sig figs) are the meaningful digits in a measurement, indicating precision. Rules: all non-zero digits are significant; zeros between them are significant; leading zeros are NOT; trailing zeros after a decimal point ARE. Operations: (1) Multiplication/Division u2014 result has as many sig figs as the factor with the FEWEST sig figs (6.1 u00d7 2.35 = 14 not 14.335). (2) Addition/Subtraction u2014 result is rounded to the FEWEST decimal places (12.1 + 0.083 = 12.2 not 12.183). Mixing rules in multi-step calculations: keep one extra digit in intermediate steps, round only at the final answer.
What is the geometric mean and when should I use it instead of the arithmetic mean?
Geometric mean = (xu2081 u00d7 xu2082 u00d7 ... u00d7 xu2099)^(1/n) = exp(mean of ln values). Use it when values are multiplicative/proportional: investment returns (20% then u221210% then 15%: AM=8.3%, GM=7.6% u2014 the GM is what actually happened to your money), population growth rates, gear ratios, decibel averages, concentration ratios. The AM is correct for additive data (test scores, temperatures). Rule: if multiplying the values together is meaningful, use geometric mean. If adding them is meaningful, use arithmetic mean.
How do I convert between radians and degrees?
360u00b0 = 2u03c0 radians, so 1u00b0 = u03c0/180 rad u2248 0.01745 rad, and 1 rad = 180u00b0/u03c0 u2248 57.296u00b0. Conversion: degrees u00d7 u03c0/180 = radians; radians u00d7 180/u03c0 = degrees. Key landmarks: 0u00b0=0, 30u00b0=u03c0/6, 45u00b0=u03c0/4, 60u00b0=u03c0/3, 90u00b0=u03c0/2, 180u00b0=u03c0, 270u00b0=3u03c0/2, 360u00b0=2u03c0. Why radians? Because in calculus, d/dx(sin x) = cos x ONLY works in radians. Arc length = ru03b8 (radians), sector area = u00bdru00b2u03b8 (radians). Always check calculator mode (RAD vs DEG) before computing u2014 a common source of physics and engineering errors.
What is the energy stored in a spring and how does Hooke's Law work?
Hooke's Law: F = u2212kx, where k is the spring constant (N/m) and x is displacement from equilibrium. The negative sign means the restoring force opposes displacement. Elastic potential energy: PE = u00bdkxu00b2. Work-energy theorem: W = u00bdkxu00b2 u2212 u00bdkxu2080u00b2. Example: spring with k=500 N/m compressed 0.1m: F=50N, PE=2.5J. In SHM (simple harmonic motion): angular frequency u03c9=u221a(k/m), period T=2u03c0u221a(m/k). A 0.5kg mass on a 500N/m spring: T=2u03c0u221a(0.5/500)=0.199s u2248 5 Hz. Our energy calculator handles all these relationships.
How does percentage error differ from absolute error and relative error?
Absolute Error = |Measured u2212 True|. Relative Error = |Measured u2212 True| / |True|. Percentage Error = Relative Error u00d7 100%. Example: measuring 9.8 m/su00b2 for gravity (true = 9.80665 m/su00b2): absolute = 0.00665 m/su00b2, relative = 0.000679, % error = 0.068%. Percentage error is preferred for scientific reporting because it is dimensionless and scale-independent (0.068% error means the same thing whether measuring mm or km). Parallax error, calibration drift, and rounding are systematic sources. Random error is reduced by averaging multiple measurements u2014 systematic error is not.

Rate Math & Science

Help us improve by rating this tool.

4.7/5
408 reviews