Concise Mathematics Tutorials
1. Linear Equations
A linear equation is an equation between two variables that gives a straight line when plotted.
General form: ax + b = 0
To solve: isolate x.
Example: Solve 2x + 3 = 7
Step 1: Subtract 3 --> 2x = 4
Step 2: Divide by 2 --> x = 2
2. Pythagoras Theorem
In a right-angled triangle, the square of the hypotenuse equals the sum of the squares of the other
two sides.
Formula: c^2 = a^2 + b^2
Example: If a = 3, b = 4, then c^2 = 9 + 16 = 25 --> c = 5
Used in geometry, construction, and navigation.
3. Derivatives Basics
Derivatives measure the rate of change of a function.
Power Rule: If f(x) = x^n, then f'(x) = n*x^(n-1)
Example: f(x) = x^3 --> f'(x) = 3x^2
Also: d/dx(sin x) = cos x, d/dx(e^x) = e^x
4. Mean, Median, Mode
Mean: Average = (sum of values) / (number of values)
Median: Middle value in sorted data
Mode: Most frequent value
Example: Data = [2, 3, 3, 5, 7]
Mean = 20/5 = 4, Median = 3, Mode = 3
5. Prime Numbers
A prime number is a natural number >1 with no divisors other than 1 and itself.
Examples: 2, 3, 5, 7, 11, 13
2 is the only even prime.
Used in cryptography and number theory.
Check: Is 29 prime? Yes, only divisible by 1 and 29.