Algebra
Algebra is a branch of mathematics that deals with symbols and the rules for manipulating these symbols. It is a unifying thread of almost all of mathematics and includes everything from solving elementary equations to studying abstractions such as groups, rings, and fields.
1. Basic Concepts
Variables and Constants:
- Variables: Symbols (usually letters) that represent unknown values. Commonly used variables are \( x, y, z \).
- Constants: Fixed values that do not change. For example, in the equation \( y = 3x + 4 \), 3 and 4 are constants.
Expressions and Equations:
- Expression: A combination of variables, constants, and operators (like +, -, *, /). Example: \( 3x + 2 \).
- Equation: A statement that two expressions are equal. Example: \( 3x + 2 = 11 \).
2. Solving Linear Equations
A linear equation is an equation of the first degree, meaning it has no exponents greater than 1.
Example:
Solve for \( x \) in the equation \( 2x + 3 = 7 \).
Solution:
1. Subtract 3 from both sides: \( 2x = 4 \).
2. Divide both sides by 2: \( x = 2 \).
3. Quadratic Equations
A quadratic equation is a second-degree polynomial equation of the form \( ax^2 + bx + c = 0 \).
Methods to Solve Quadratic Equations:
- Factoring: Express the quadratic equation as a product of two binomials.
- Quadratic Formula: \( x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \).
- Completing the Square: Rearrange the equation to form a perfect square trinomial.
Example:
Solve \( x^2 - 5x + 6 = 0 \).
Solution:
1. Factor: \( (x - 2)(x - 3) = 0 \).
2. Set each factor equal to zero: \( x - 2 = 0 \) or \( x - 3 = 0 \).
3. Solve for \( x \): \( x = 2 \) or \( x = 3 \).
4. Inequalities
Inequalities compare two expressions and use symbols like \( <, >, \leq, \geq \).
Example:
Solve \( 3x + 4 > 10 \).
Solution:
1. Subtract 4 from both sides: \( 3x > 6 \).
2. Divide both sides by 3: \( x > 2 \).
5. Functions
A function is a relation that uniquely associates members of one set with members of another set.
Types of Functions:
- Linear Function: \( f(x) = mx + b \).
- Quadratic Function: \( f(x) = ax^2 + bx + c \).
- Exponential Function: \( f(x) = a \cdot b^x \).
Example:
Given \( f(x) = 2x + 3 \), find \( f(4) \).
Solution:
1. Substitute \( x = 4 \): \( f(4) = 2(4) + 3 \).
2. Calculate: \( f(4) = 8 + 3 = 11 \).
6. Polynomials
A polynomial is an expression consisting of variables and coefficients, involving operations of addition, subtraction, multiplication, and non-negative integer exponents.
Example:
\( 4x^3 - 3x^2 + 2x - 1 \) is a polynomial of degree 3.
Operations on Polynomials:
- Addition: Combine like terms.
- Subtraction: Distribute the negative sign and combine like terms.
- Multiplication: Use the distributive property.
- Division: Use long division or synthetic division.
7. Systems of Equations
A system of equations is a set of two or more equations with the same variables.
Methods to Solve Systems of Equations:
- Substitution: Solve one equation for one variable and substitute into the other equation.
- Elimination: Add or subtract equations to eliminate one variable.
- Graphing: Graph each equation and find the point(s) of intersection.
Example:
Solve the system:
\[
\begin{cases}
2x + y = 5 \\
x - y = 1
\end{cases}
\]
Solution:
1. Add the two equations: \( 3x = 6 \).
2. Solve for \( x \): \( x = 2 \).
3. Substitute \( x = 2 \) into the second equation: \( 2 - y = 1 \).
4. Solve for \( y \): \( y = 1 \).
8. Sequences and Series
Sequences:
A sequence is an ordered list of numbers. Example: \( 2, 4, 6, 8, \ldots \)
Series:
A series is the sum of the terms of a sequence. Example: \( 2 + 4 + 6 + 8 + \ldots \)
Arithmetic Sequence:
A sequence where the difference between consecutive terms is constant. General form: \( a_n = a_1 + (n-1)d \).
Geometric Sequence:
A sequence where the ratio between consecutive terms is constant. General form: \( a_n = a_1 \cdot r^{n-1} \).
Example:
Find the 5th term of the arithmetic sequence \( 3, 7, 11, \ldots \).
Solution:
1. Identify \( a_1 = 3 \) and \( d = 4 \).
2. Use the formula: \( a_5 = 3 + (5-1) \cdot 4 = 3 + 16 = 19 \).
9. Logarithms and Exponents
Exponents:
Rules of exponents include:
- \( a^m \cdot a^n = a^{m+n} \)
- \( (a^m)^n = a^{m \cdot n} \)
- \( a^{-n} = \frac{1}{a^n} \)
Logarithms:
The logarithm of a number is the exponent to which another fixed value, the base, must be raised to produce that number.
Example:
Solve \( \log_2 8 = x \).
Solution:
1. Rewrite in exponential form: \( 2^x = 8 \).
2. Since \( 2^3 = 8 \), \( x = 3 \).
10. Matrices
A matrix is a rectangular array of numbers arranged in rows and columns.
Operations on Matrices:
- Addition:Add corresponding elements.
- Subtraction: Subtract corresponding elements.
- Multiplication: Multiply rows by columns.
Example:
Given matrices \( A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} \) and \( B = \begin{pmatrix} 2 & 0 \\ 1 & 2 \end{pmatrix} \), find \( A + B \).
Solution:
\[A + B = \begin{pmatrix} 1+2 & 2+0 \\ 3+1 & 4+2 \end{pmatrix} = \begin{pmatrix} 3 & 2 \\ 4 & 6 \end{pmatrix}
\]
11. Complex Numbers
A complex number is a number of the form \( a + bi \), where \( a \) and \( b \) are real numbers, and \( i \) is the imaginary unit with the property \( i^2 = -1 \).
Operations on Complex Numbers:
- Addition: \( (a + bi) + (c + di) = (a + c) + (b + d)i \).
- Subtraction: \( (a + bi) - (c + di) = (a - c) + (b - d)i \).
- Multiplication: \( (a + bi)(c + di) = (ac - bd) + (ad + bc)i \).
Example:
Multiply \( (2 + 3i) \) and \( (1 + 4i) \).
Solution:
\[
(2 + 3i)(1 + 4i) = 2 \cdot 1 + 2 \cdot 4i + 3i \cdot 1 + 3i \cdot 4i = 2 + 8i + 3i + 12i^2 = 2 + 11i + 12(-1) = 2 + 11i - 12 = -10 + 11i
\]
12. Probability and Statistics
Probability:
Probability is a measure of the likelihood that an event will occur.
Example:
What is the probability of rolling a 3 on a six-sided die?
Solution:
There is 1 favorable outcome out of 6 possible outcomes, so the probability is \( \frac{1}{6} \).
Statistics:
Statistics involves collecting, analyzing, interpreting, presenting, and organizing data.
Example:
Find the mean of the data set \( 2, 4, 6, 8, 10 \).
Solution:
\[
\text{Mean} = \frac{2 + 4 + 6 + 8 + 10}{5} = \frac{30}{5} = 6
\]
13. Trigonometry
Trigonometry deals with the relationships between the sides and angles of triangles.
Basic Trigonometric Functions:
- Sine (sin): \( \sin(\theta) = \frac{\text{opposite}}{\text{hypotenuse}} \)
- Cosine (cos): \( \cos(\theta) = \frac{\text{adjacent}}{\text{hypotenuse}} \)
- Tangent (tan): \( \tan(\theta) = \frac{\text{opposite}}{\text{adjacent}} \)
Example:
Find \( \sin(30^\circ) \).
Solution:
\[
\sin(30^\circ) = \frac{1}{2}
\]
14. Calculus Basics
Derivatives:
The derivative of a function measures the rate at which the function value changes as its input changes.
Example:
Find the derivative of \( f(x) = x^2 \).
Solution:
\[
f'(x) = 2x
\]
Integrals:
The integral of a function represents the area under the curve of the function.
Example:
Find the integral of \( f(x) = 2x \).
Solution:
\[
\int 2x \, dx = x^2 + C
\]
where \( C \) is the constant of integration.
0 Comments