Let's break down the unit circle and periodic functions, two crucial concepts in Algebra 2! 🚀
Understanding the Unit Circle 🧭
The unit circle is a circle with a radius of 1 centered at the origin (0, 0) in the coordinate plane. It's a fundamental tool for understanding trigonometric functions.
- Radius: Always 1.
- Center: (0, 0).
- Equation: $x^2 + y^2 = 1$.
Key Angles and Coordinates 📍
Certain angles are particularly important on the unit circle. Here's a table of some common angles in degrees and radians, along with their corresponding coordinates (cos(θ), sin(θ)):
| Angle (Degrees) |
Angle (Radians) |
Coordinates (cos(θ), sin(θ)) |
| 0° |
0 |
(1, 0) |
| 30° |
π/6 |
(√3/2, 1/2) |
| 45° |
π/4 |
(√2/2, √2/2) |
| 60° |
π/3 |
(1/2, √3/2) |
| 90° |
π/2 |
(0, 1) |
| 180° |
π |
(-1, 0) |
| 270° |
3π/2 |
(0, -1) |
| 360° |
2π |
(1, 0) |
How to Find Coordinates 🧐
For any angle θ on the unit circle:
* The x-coordinate of the point where the terminal side of the angle intersects the circle is cos(θ).
* The y-coordinate is sin(θ).
This gives us the identity: (x, y) = (cos(θ), sin(θ)).
Periodic Functions Explained 🔄
A periodic function is a function that repeats its values at regular intervals. This means there's a specific interval, called the period, over which the function's graph completes one full cycle before repeating.
Key Concepts 🔑
- Period (P): The length of one complete cycle. For example, $sin(x)$ has a period of $2π$.
- Amplitude (A): Half the distance between the maximum and minimum values of the function. For example, in $y = A sin(x)$, A is the amplitude.
- Frequency (f): The number of cycles completed per unit of time or distance. $f = 1/P$
Trigonometric Functions as Periodic Functions 📈
The most common examples of periodic functions are trigonometric functions like sine, cosine, tangent, cotangent, secant, and cosecant.
* **Sine and Cosine:** $f(x) = sin(x)$ and $f(x) = cos(x)$ have a period of $2π$. Their graphs repeat every $2π$ radians.
* **Tangent:** $f(x) = tan(x)$ has a period of $π$. Its graph repeats every $π$ radians.
General Form of Sine and Cosine Functions ✍️
The general forms of sine and cosine functions are:
* $y = A sin(B(x - C)) + D$
* $y = A cos(B(x - C)) + D$
Where:
* A = Amplitude
* B affects the period (Period = $2π/|B|$)
* C = Horizontal shift (phase shift)
* D = Vertical shift
Example 💡
Consider the function $y = 3sin(2x + π) + 1$.
* Amplitude: |A| = 3
* Period: $2π/|B| = 2π/2 = π$
* Phase Shift: C = $-π/2$ (shift left by $π/2$)
* Vertical Shift: D = 1 (shift up by 1)
Code Example 💻
Here's a Python code snippet using `matplotlib` and `numpy` to plot a sine wave:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 4*np.pi, 400) # Generate x values from 0 to 4pi
y = np.sin(x)
plt.figure(figsize=(8, 6))
plt.plot(x, y, label='sin(x)')
plt.title('Sine Wave')
plt.xlabel('x')
plt.ylabel('sin(x)')
plt.grid(True)
plt.legend()
plt.show()
Relationship Between the Unit Circle and Periodic Functions 🤝
The unit circle provides a visual representation of the values of sine and cosine for all angles. As you move around the unit circle, the y-coordinate (sine) and x-coordinate (cosine) change periodically. This periodic change is what defines the sine and cosine functions as periodic functions.
Essentially, the unit circle is a tool to *derive* the values that define the periodic nature of sine and cosine. 🌟