9713. Common Math Formulas
Math Formulas


Common math formulas.

1. Geometry

image

1.1 Perimeter

Shape Formula Explanation
Square P=4a where a = any edge
Rectangle P=2l+2w where l = length and w = width
Triangle P=a+b+c where a = side, b = base, and c = side
Circle P=πd or P=2πr where π = 3.14, d = diameter and r = radius

1.2 Area

Shape Formula Explanation
Square A=a2 where a = any side of the square
Rectangle A=lw where l = length and w = width
Parallelogram A=bh where b = base and h = height
Triangle A=12bh where b = base and h = height
Triangle A=|(Ax(ByCy)+Bx(CyAy)+Cx(AyBy)2| where (Ax,Ay) are the x and y coordinates of the point A, etc.
Circle A=πr2 where π = 3.14 and r = radius
Trapezoid A=a+b2h where a = top base, b = bottom base, and h = height
Sphere S=4πr2 where S = surface area, π = 3.14 and r = radius
Cube S=6a2 where a = any edge
Cylinder S=2πrh where π = 3.14, r = radius, and h = height

1.3 Volume

Shape Formula Explanation
Cube V=a3 where a = any edge
Rectangular Container V=lwh where l = length, w = width, and h = height
Square Pyramid V=13b2h where b = base length, h = height
Cylinder V=πr2h where π = 3.14, r = radius, and h = height
Cone V=13πr2h where π = 3.14, r = radius, and h = height
Sphere V=43πr3 where π = 3.14, r = radius
Right Circular Cylinder V=πr2h where π = 3.14, r = radius, and h = height

2. Trigonometry

image

Function Formula
Sine sinθ=oppositehypotenuse
Cosine cosθ=adjacenthypotenuse
Tangent tanθ=oppositeadjacent, or tanθ=sinθcosθ
Cosecant cscθ=1sinθ
Secant secθ=1cosθ
Cotangent cotθ=1tanθ, or cotθ=cosθsinθ
Equation sin2θ+cos2θ=1

3. Formulas/Equations

Title Formula Explanation
Distance between two points d=(x2x1)2+(y2y1)2 where (x1,y1) and (x2,y2) are two points on a coordinate plane
Slope of a line m=y2y1x2x1 where (x1,y1) and (x2,y2) are two points on a coordinate plane
Equation of a line y=mx+b where m is the slope and b is the y-intercept
Quadratic Equation ax2+bx+c=0 where a and b are coefficients and c is constant
Quadratic formula x=b±b24ac2a where a and b are coefficients and c is constant
Equation of a circle (xh)2+(yk)2=r2 where r is the radius and (h, k) is the center
Logarithm Equation logbx=y, by=x  
Logarithm Equation logbxy=logbx+logby  
Logarithm Equation logbxy=logbxlogby  

4. Algebraic Rules

Title Formula Explanation
Product Rule an×am=an+m where a is the base, n and m are the exponents
Power Rule (an)m=anm where a is the base, n and m are the exponents
Quotient Rule anam=anm where a is the base, n and m are the exponents
Negative Exponent an=1an where a is the base, n is the exponent

5. Formulas

5.1 Sum of Integers 1 through N

If

Sn=1+2+3+...+n

then reverse the series and rewrite that as

Sn=n+(n1)+(n2)+...+1

Adding the two together

2Sn=n(n+1)

or

Sn=n(n+1)2

5.2 Sum of Powers of 2

Sn=20+21+22+...+2n=2n+11

Proofs: Look at these values in binary way.

Power Binary Decimal
20 000001 1
21 000010 2
22 000100 4
23 001000 8
24 010000 16
25 100000 32

Example 1:

S3=20+21+22+23=1111(Binary)=23+11

Example 2:

S5=20+21+22+...+25=111111(Binary)=26+11

5.3 Permutation and Combination

Permutation:

P(n,r)=n!(nr)!

Example: Choose 2 numbers from array [1,2,3,4], return the total number of all possible permutations.

P(4,2)=4!(42)!=4!(2)!=242=12

Combination:

C(n,r)=n!r!(nr)!

Example: Choose 2 numbers from array [1,2,3,4], return the total number of all possible combinations.

C(4,2)=4!2!(42)!=4!2!(2!)=2422=6

6. References