Finding Perpendicular Line Equations- Two Methods
What Is a Perpendicular Line Equation?
A perpendicular line is one that crosses another line at a 90-degree angle. In coordinate geometry, finding the equation of a line perpendicular to a given line is a common task. It shows up in geometry problems, construction, computer graphics, and engineering.
The key relationship: if two lines are perpendicular, their slopes multiply to -1. That's it. Everything else follows from this.
Method 1: Using the Negative Reciprocal
This is the standard approach most textbooks teach. You find the slope of your given line, then take its negative reciprocal to get the perpendicular slope.
The Process
- Start with your original line equation
- Solve for y to get it into y = mx + b form
- Identify the slope (m)
- Flip the slope and change the sign — that's your negative reciprocal
- Plug the new slope and your point into y = mx + b
- Solve for b
- Write your final equation
Example
Given line: y = 2x + 3
Point: (4, 1)
Original slope: 2
Negative reciprocal: -1/2
Plug in: 1 = (-1/2)(4) + b
1 = -2 + b
b = 3
Answer: y = -1/2x + 3
Method 2: Using Point-Slope Form Directly
Skip isolating y. Use the point-slope formula with the perpendicular slope already plugged in.
The Formula
y - y₁ = m(x - x₁)
Where m is the negative reciprocal of your original line's slope.
Same Example, Faster
Given line: 3x + 2y = 8
Point: (-1, 2)
Find original slope: 3x + 2y = 8 → 2y = -3x + 8 → y = -3/2x + 4
Original slope: -3/2
Perpendicular slope: 2/3
Apply point-slope: y - 2 = (2/3)(x + 1)
Convert to slope-intercept: y = (2/3)x + 2/3 + 2 = (2/3)x + 8/3
Answer: y = (2/3)x + 8/3
Method Comparison
| Aspect | Method 1 (Slope-Intercept) | Method 2 (Point-Slope) |
|---|---|---|
| Steps required | More steps | Fewer steps |
| Best when | You need y = mx + b format | You already have a point |
| Difficulty | Straightforward | Less algebra |
| Common errors | Sign mistakes on b | Forgetting to distribute |
Getting Started: Step-by-Step
Here's how to handle any perpendicular line problem:
- Get the original line in y = mx + b form — solve for y if needed
- Extract the slope — that's your m value
- Calculate the perpendicular slope — flip the fraction and flip the sign
- Identify your given point — the coordinates (x₁, y₁)
- Apply the formula — y - y₁ = m(x - x₁) where m is your perpendicular slope
- Simplify — distribute and solve for y if you need slope-intercept form
Common Mistakes to Avoid
Flipping the sign instead of the fraction. The perpendicular slope of 3/4 is -4/3, not -3/4.
Forgetting that vertical and horizontal lines are perpendicular. A vertical line (x = constant) is perpendicular to a horizontal line (y = constant).
Using the wrong point. Make sure you're plugging in the point that the perpendicular line must pass through, not a random point.
When to Use Which Method
Use Method 1 when the problem asks for y = mx + b format or when you need to graph the line.
Use Method 2 when you have a specific point and want the answer in any form — point-slope is a valid equation format.