Graph Formulas- Essential Equations for Plotting
Graph Formulas: The Equations You'll Actually Use
Every graph you plot comes from an equation. Period. If you're struggling with coordinate geometry, it's probably because you're memorizing instead of understanding what these formulas actually do on a plane.
This guide covers the essential graph formulas you need for plotting, with zero fluff and maximum实用性.
Understanding the Coordinate Plane First
Before touching any formula, you need this straight:
- X-axis runs horizontal (left to right)
- Y-axis runs vertical (up and down)
- The point where they cross is the origin (0, 0)
- Points are written as (x, y) — horizontal position first, then vertical
That's it. Everything else is just patterns on this grid.
Linear Equations: Straight Lines
The Slope-Intercept Form
This is the most common linear equation you'll encounter:
y = mx + b
Where:
- m = slope (rise over run — how steep the line is)
- b = y-intercept (where the line crosses the y-axis)
Finding the Slope
Slope = (y₂ - y₁) / (x₂ - x₁)
Pick any two points on your line. Subtract the y-values, divide by the difference in x-values. Positive slope goes up-left to down-right. Negative slope goes down-left to up-right.
Point-Slope Form
When you know one point and the slope:
y - y₁ = m(x - x₁)
Quadratic Equations: Parabolas
These produce U-shaped curves called parabolas.
Standard Form
y = ax² + bx + c
The coefficient a determines direction and width:
- a > 0: opens upward
- a < 0: opens downward
- |a|越大: narrower curve
Vertex Form (More Useful for Plotting)
y = a(x - h)² + k
The vertex is the turning point at (h, k). This form makes graphing way easier because you know exactly where the parabola bends.
Quadratic Formula (Finding X-Intercepts)
x = (-b ± √(b² - 4ac)) / 2a
This gives you the roots — where the parabola crosses the x-axis. The discriminant (b² - 4ac) tells you what you're dealing with:
- Positive: two real roots
- Zero: one repeated root
- Negative: no real roots (curve stays entirely above or below x-axis)
Exponential Functions: Growth and Decay
y = a · bˣ
Where:
- a = starting value
- b = growth/decay factor
- x = exponent (time, usually)
If b > 1, you get growth. If 0 < b < 1, you get decay. These curves shoot up (or down) fast and never touch zero.
Common Base: e
y = eˣ
The natural exponential. Used constantly in calculus, compound interest, and natural growth models. e ≈ 2.718.
Logarithmic Functions: The Inverse
y = logₐ(x) or y = ln(x)
Log is the inverse of exponential. If y = aˣ, then x = logₐ(y).
- ln = natural log (base e)
- log = common log (base 10)
Log graphs start at negative infinity on the left and increase slowly. They pass through (1, 0) and rise without bound.
Trigonometric Functions: Waves
These produce repeating wave patterns.
Sine and Cosine
y = A · sin(Bx + C) + D
y = A · cos(Bx + C) + D
Where:
- A = amplitude (height from center to peak)
- B = frequency (how many cycles per 2π)
- C = phase shift (horizontal movement)
- D = vertical shift
Key Points to Remember
- sin(0) = 0, sin(π/2) = 1, sin(π) = 0, sin(3π/2) = -1
- cos(0) = 1, cos(π/2) = 0, cos(π) = -1, cos(3π/2) = 0
- Period = 2π/B
Circle Equations
(x - h)² + (y - k)² = r²
Center at (h, k), radius r. That's all you need.
Ellipse Equation
(x - h)²/a² + (y - k)²/b² = 1
Center at (h, k). Semi-major axis a, semi-minor axis b.
Power Functions: Variable as Base
y = xⁿ
- n = 1: straight line through origin
- n = 2: parabola
- n = 3: cubic curve
- n = 1/2: square root (half-parabola)
- n = -1: hyperbola (1/x)
How to Plot Any Graph: Step-by-Step
Step 1: Identify the Equation Type
Linear? Quadratic? Exponential? This determines the shape before you plot a single point.
Step 2: Find Key Points
- Y-intercept: set x = 0, solve for y
- X-intercepts: set y = 0, solve for x
- Vertex (for quadratics): use -b/2a for x-coordinate
- Domain restrictions: check for values that cause division by zero or negative square roots
Step 3: Create a Value Table
Pick 5-7 x-values. Plug them in. Record y-values. Plot the points.
Step 4: Connect the Dots
- Linear equations: straight line through any two points
- Quadratic: smooth U-curve through the vertex
- Exponential: curved, asymptotic to axes
- Trigonometric: wave pattern connecting key points
Step 5: Check Your Work
Does the graph match the expected shape? Are intercepts correct? Does the domain make sense?
Graphing Tools Comparison
| Tool | Best For | Cost | Learning Curve |
|---|---|---|---|
| Desmos | Quick plots, interactive exploration | Free | Low |
| GeoGebra | Advanced geometry + algebra | Free | Medium |
| Matlab | Engineering, heavy computation | Paid | High |
| Python (Matplotlib) | Automation, data visualization | Free | Medium-High |
| TI-84 Calculator | Standard exams, quick checks | Paid | Low |
Common Mistakes to Avoid
- Forgetting the negative sign in vertex form — (x + 3)² actually means x - (-3)
- Misidentifying the slope — rise first, then run
- Ignoring the domain — you can't take log of a negative number or square root of negative numbers (in real graphs)
- Plotting too few points — especially for curves, you need enough to catch the shape
- Confusing correlation — a line through points doesn't prove causation
Quick Reference: Equation to Shape
| Equation Type | Form | Shape |
|---|---|---|
| Linear | y = mx + b | Straight line |
| Quadratic | y = ax² + bx + c | Parabola (U-shape) |
| Cubic | y = ax³ + bx² + cx + d | S-curve |
| Exponential | y = a·bˣ | J-curve |
| Logarithmic | y = log(x) | Slow rise, asymptotic |
| Sine/Cosine | y = A·sin(Bx) | Wave |
| Circle | x² + y² = r² | Circle |
Final Word
Graph formulas aren't magic. They're descriptions of patterns. Learn to recognize what each equation produces visually, and you'll never struggle with plotting again.