πŸ“Œ What is a System of Equations?
🎯
The Big Idea
A solution (x, y) must make BOTH equations true at the same time
A system of 2 equations in 2 unknowns looks like this:
{ 2x + y = 7
x βˆ’ y = 2
πŸ’‘

The solution is an ordered pair (x, y)

You're looking for ONE specific point that lies on both lines. Plug your answer back into both original equations to verify β€” if both are true, you've got it!

βœ…
One Solution
Lines intersect at exactly one point. Most common case.
e.g. (3, 1)
∞
Infinite Solutions
Lines are identical β€” same equation in disguise. Variables cancel entirely and you get 0 = 0.
🚫
No Solution
Lines are parallel β€” never meet. Variables cancel and you get a false statement like 0 = 5.
πŸ”„ Method 1 β€” Substitution
πŸ”„
Substitution Method
Solve one equation for one variable, then plug into the other
When to use substitution
Best when one equation already has an isolated variable (like y = 2x + 1) or when it's easy to isolate one.
1
Isolate one variable in either equation. Pick whichever is easiest β€” look for a coefficient of 1.
2
Substitute that expression into the OTHER equation. Now you have one equation with one unknown.
3
Solve for the remaining variable.
4
Back-substitute to find the other variable. Then check in both original equations.
πŸ“Œ Example 1 β€” Substitution:   { y = 2x βˆ’ 1    and    3x + y = 9 }
1
Already isolated: y = 2x βˆ’ 1. Use this as the substitution expression.
2
Substitute into 3x + y = 9:   3x + (2x βˆ’ 1) = 9
3
Simplify:   5x βˆ’ 1 = 9  β†’  5x = 10  β†’  x = 2
4
Back-substitute:   y = 2(2) βˆ’ 1 = 4 βˆ’ 1 = y = 3
βœ“
Check eq 1: 3 = 2(2)βˆ’1 = 3 βœ…    Check eq 2: 3(2)+3 = 6+3 = 9 βœ…
Solution: (x, y) = (2, 3)
πŸ“Œ Example 2 β€” Substitution:   { x + 2y = 8    and    3x βˆ’ y = 3 }
1
Isolate x in equation 1 (coefficient is 1):   x = 8 βˆ’ 2y
2
Substitute into equation 2:   3(8 βˆ’ 2y) βˆ’ y = 3
3
Distribute:   24 βˆ’ 6y βˆ’ y = 3  β†’  24 βˆ’ 7y = 3  β†’  βˆ’7y = βˆ’21  β†’  y = 3
4
Back-substitute:   x = 8 βˆ’ 2(3) = 8 βˆ’ 6 = x = 2
βœ“
Check eq 1: 2+2(3)=8 βœ…    Check eq 2: 3(2)βˆ’3=3 βœ…
Solution: (x, y) = (2, 3)
βž•βž– Method 2 β€” Elimination
⚑
Elimination Method
Add or subtract equations to cancel out one variable
When to use elimination
Best when both equations are in standard form (ax + by = c) and coefficients line up nicely β€” especially when you spot matching or opposite coefficients.
1
Line up the equations with like terms in columns (x under x, y under y).
2
Multiply one or both equations (if needed) to make one variable's coefficients equal or opposite.
3
Add or subtract the equations to eliminate one variable.
4
Solve for the remaining variable, then substitute back to find the other.
βž• Add the Equations
Use when one variable has opposite coefficients (e.g. +3y and βˆ’3y). Adding eliminates that variable.

2x + 3y = 11
+ x βˆ’ 3y =  1
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”
3x         = 12
x = 4
βž– Subtract the Equations
Use when one variable has equal coefficients (e.g. both have 2y). Subtracting eliminates that variable.

5x + 2y = 14
βˆ’ 3x + 2y =  6
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”
2x         =  8
x = 4
βœ–οΈ Multiply, Then Add
When coefficients don't match, multiply one equation by a constant first to create opposites, then add.

x + 2y = 7  Γ— 3
3x + y = 11
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”
3x + 6y = 21
+ 3x +  y = 11  β† negate
βœ–οΈβœ–οΈ Multiply Both, Then Add
When neither matches, multiply both equations by different constants to get opposite coefficients, then add.

2x + 3y = 12  Γ— 2
3x + 2y = 13  Γ— 3
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”
4x + 6y = 24
+ 9x βˆ’ 6y = 39
πŸ“Œ Example 3 β€” Elimination by Addition:   { 2x + 3y = 11    and    x βˆ’ 3y = 1 }
1
Spot opposite coefficients: +3y and βˆ’3y β€” adding will cancel y.
2
Add the equations:   (2x + 3y) + (x βˆ’ 3y) = 11 + 1  β†’  3x = 12  β†’  x = 4
3
Substitute x = 4 into equation 2:   4 βˆ’ 3y = 1  β†’  βˆ’3y = βˆ’3  β†’  y = 1
βœ“
Check eq 1: 2(4)+3(1)=11 βœ…    Check eq 2: 4βˆ’3(1)=1 βœ…
Solution: (x, y) = (4, 1)
πŸ“Œ Example 4 β€” Elimination by Subtraction:   { 5x + 2y = 14    and    3x + 2y = 6 }
1
Spot equal coefficients: both have 2y β€” subtracting will cancel y.
2
Subtract eq 2 from eq 1:   (5x + 2y) βˆ’ (3x + 2y) = 14 βˆ’ 6  β†’  2x = 8  β†’  x = 4
3
Substitute x = 4 into equation 2:   3(4) + 2y = 6  β†’  12 + 2y = 6  β†’  2y = βˆ’6  β†’  y = βˆ’3
βœ“
Check eq 1: 5(4)+2(βˆ’3)=20βˆ’6=14 βœ…    Check eq 2: 3(4)+2(βˆ’3)=12βˆ’6=6 βœ…
Solution: (x, y) = (4, βˆ’3)
πŸ“Œ Example 5 β€” Multiply One Equation:   { x + 2y = 7    and    3x βˆ’ y = 7 }
1
Goal: eliminate y. Eq 1 has +2y, eq 2 has βˆ’y. Multiply eq 2 by 2:   2(3x βˆ’ y = 7)  β†’  6x βˆ’ 2y = 14
2
Now add: (x + 2y) + (6x βˆ’ 2y) = 7 + 14  β†’  7x = 21  β†’  x = 3
3
Substitute x = 3 into eq 1:   3 + 2y = 7  β†’  2y = 4  β†’  y = 2
βœ“
Check eq 1: 3+2(2)=7 βœ…    Check eq 2: 3(3)βˆ’2=7 βœ…
Solution: (x, y) = (3, 2)
πŸ“Œ Example 6 β€” Multiply Both Equations:   { 2x + 3y = 12    and    3x + 2y = 13 }
1
Goal: eliminate y. LCM of 3 and 2 is 6. Multiply eq 1 by 2: 4x + 6y = 24. Multiply eq 2 by 3: 9x + 6y = 39.
2
Subtract (both have +6y): (9x + 6y) βˆ’ (4x + 6y) = 39 βˆ’ 24  β†’  5x = 15  β†’  x = 3
3
Substitute x = 3 into eq 1:   2(3) + 3y = 12  β†’  6 + 3y = 12  β†’  3y = 6  β†’  y = 2
βœ“
Check eq 1: 2(3)+3(2)=6+6=12 βœ…    Check eq 2: 3(3)+2(2)=9+4=13 βœ…
Solution: (x, y) = (3, 2)
⚠️ Special Cases
⚠️
No Solution & Infinite Solutions
When variables cancel completely β€” watch what's left
🚫 No Solution β€” Parallel Lines
?
System:   { 2x + y = 5   and   4x + 2y = 3 }
1
Multiply eq 1 by 2:   4x + 2y = 10
2
Subtract eq 2:   (4x + 2y) βˆ’ (4x + 2y) = 10 βˆ’ 3
!
0 = 7  β† FALSE β€” no solution exists. Lines are parallel.
∞ Infinite Solutions β€” Same Line
?
System:   { x + 2y = 4   and   2x + 4y = 8 }
1
Multiply eq 1 by 2:   2x + 4y = 8
2
Subtract eq 2:   (2x + 4y) βˆ’ (2x + 4y) = 8 βˆ’ 8
!
0 = 0  β† TRUE β€” infinite solutions. Same line.
⚑ Quick Reference β€” Which Method?
Situation Best Method Operation
One equation has y = … or x = … Substitution Plug in directly
Coefficients are opposite (+3y / βˆ’3y) Elimination βž• Add equations
Coefficients are equal (2y / 2y) Elimination βž– Subtract equations
Coefficients don't match β€” one is a multiple Elimination βœ–οΈ Multiply one, then add/subtract
No easy shortcut Elimination βœ–οΈβœ–οΈ Multiply both, then add/subtract
Variables cancel β†’ false (0 = 5) 🚫 No solution Parallel lines
Variables cancel β†’ true (0 = 0) ∞ Solutions Same line (identical equations)
βœ…

Always check your answer!

Plug your (x, y) back into both original equations. If both sides balance, you're correct. This takes 20 seconds and catches all arithmetic errors.

🌹 Systems with Trig & Polar Equations
🌹
Solving Systems like r = 2sinΞΈ and r = 1 + cosΞΈ
Set equal Β· use trig identities Β· find all ΞΈ in [0, 2Ο€] Β· check for pole
πŸ’‘

The core idea: both curves share the same (r, ΞΈ)

A solution is a point where both polar curves pass through the same location. Since both expressions equal r, you can set them equal to each other and solve for ΞΈ. Then plug ΞΈ back in to find r.

Step-by-Step Process
Works for any two polar/trig equations where both r and ΞΈ are unknown
1
Identify the type:
β€’ Type A (r sinΞΈ = a, r cosΞΈ = b): divide to get tanΞΈ = a/b, then solve for ΞΈ, then back-sub for r.
β€’ Type B (r = f(ΞΈ), r = g(ΞΈ)): set equal to get one equation in ΞΈ, solve for ΞΈ, then find r.
2
For Type A β€” divide the equations: (r sinΞΈ)/(r cosΞΈ) = a/b β†’ tanΞΈ = a/b. The r cancels, leaving just ΞΈ.
3
Determine the correct quadrant for ΞΈ by checking the signs of r sinΞΈ (= y) and r cosΞΈ (= x). Positive x and y β†’ Q1. Use this to pick the right solution.
4
Find r: substitute θ into either original equation. Or use the shortcut: r = √((r sinθ)² + (r cosθ)²) = √(a² + b²).
5
For Type B β€” check the pole (origin): if either curve passes through r = 0, the pole might be an intersection even if ΞΈ values differ. Test r = 0 in each equation separately.
6
Write solutions as (r, ΞΈ) pairs and verify in both original equations.
πŸ“Œ Example 1 β€” r = 2sinΞΈ and r = 2cosΞΈ   (Find all intersections)
1
Set equal:   2sinΞΈ = 2cosΞΈ
2
Divide both sides by 2cosΞΈ:   sinΞΈ/cosΞΈ = 1  β†’  tanΞΈ = 1
3
Solve for ΞΈ in [0, 2Ο€]:   tanΞΈ = 1 when ΞΈ = Ο€/4   and   ΞΈ = 5Ο€/4
4
Find r at ΞΈ = Ο€/4:   r = 2sin(Ο€/4) = 2Β·(√2/2) = √2
5
Find r at ΞΈ = 5Ο€/4:   r = 2sin(5Ο€/4) = 2Β·(βˆ’βˆš2/2) = βˆ’βˆš2  β†’  negative r means same physical point as (√2, Ο€/4). Not a new intersection.
6
Check the pole: r = 2sinΞΈ = 0 when ΞΈ = 0 or Ο€.   r = 2cosΞΈ = 0 when ΞΈ = Ο€/2 or 3Ο€/2. Different ΞΈ values, but both reach r = 0 β†’ the pole is also an intersection.
Solutions: (√2, Ο€/4)   and   the pole (0, 0)
πŸ“Œ Example 2 β€” Given:   r sinΞΈ = 2√2   and   r cosΞΈ = 2√2   (Solve for both r and ΞΈ)
1
Recognize the form: these look like rectangular conversion formulas. Recall: y = r sinθ and x = r cosθ. So we have x = 2√2 and y = 2√2.
2
Divide equation 1 by equation 2:   (r sinΞΈ)/(r cosΞΈ) = (2√2)/(2√2)  β†’  tanΞΈ = 1
3
Solve for ΞΈ in [0, 2Ο€]:   tanΞΈ = 1 at ΞΈ = Ο€/4   and   ΞΈ = 5Ο€/4.   Since both r sinΞΈ and r cosΞΈ are positive, the point is in Q1  β†’  ΞΈ = Ο€/4
4
Substitute ΞΈ = Ο€/4 into equation 1:   r sin(Ο€/4) = 2√2  β†’  rΒ·(√2/2) = 2√2  β†’  r = 2√2 Β· (2/√2) = 2√2 Β· √2 = r = 4
βœ“
Check eq 2:   4Β·cos(Ο€/4) = 4Β·(√2/2) = 2√2 βœ…
Solution: r = 4, ΞΈ = Ο€/4   β†’   point (4, Ο€/4) in polar   =   (2√2, 2√2) in rectangular
πŸ“Œ Example 3 β€” Given:   r sinΞΈ = 3   and   r cosΞΈ = 3√3   (Solve for both r and ΞΈ)
1
Divide equation 1 by equation 2:   (r sinΞΈ)/(r cosΞΈ) = 3/(3√3)  β†’  tanΞΈ = 1/√3
2
Solve for ΞΈ:   tanΞΈ = 1/√3 at ΞΈ = Ο€/6 and ΞΈ = 7Ο€/6.   Since both equations give positive values, point is in Q1  β†’  ΞΈ = Ο€/6
3
Substitute ΞΈ = Ο€/6 into equation 2:   r cos(Ο€/6) = 3√3  β†’  rΒ·(√3/2) = 3√3  β†’  r = 3√3Β·(2/√3) = 3Β·2 = r = 6
4
Find r using Pythagorean identity as a check:   rΒ² = (r sinΞΈ)Β² + (r cosΞΈ)Β² = 3Β² + (3√3)Β² = 9 + 27 = 36  β†’  r = 6 βœ…
βœ“
Check eq 1:   6Β·sin(Ο€/6) = 6Β·(1/2) = 3 βœ…    Check eq 2:   6Β·cos(Ο€/6) = 6Β·(√3/2) = 3√3 βœ…
Solution: r = 6, ΞΈ = Ο€/6   β†’   point (6, Ο€/6) in polar   =   (3√3, 3) in rectangular
πŸ”‘

Shortcut β€” use rΒ² = xΒ² + yΒ²

When you have r sinΞΈ = a and r cosΞΈ = b, you can always find r directly without needing ΞΈ first:
rΒ² = (r sinΞΈ)Β² + (r cosΞΈ)Β² = aΒ² + bΒ²   β†’   r = √(aΒ² + bΒ²)
Then find ΞΈ from tanΞΈ = a/b (y over x). This is the fastest path when the numbers are messy.

πŸ“ Systems for Geometric Sequences & Series
πŸ“
Finding a and r from Two Given Terms
Set up two equations using aβ‚™ = aΒ·rⁿ⁻¹ Β· then divide to eliminate a
πŸ“‹

The key formula: aβ‚™ = a Β· rⁿ⁻¹

Every term in a geometric sequence is: aβ‚™ = a Β· rⁿ⁻¹ where a = first term and r = common ratio. If you're given two terms, you get two equations. Dividing them eliminates a and lets you solve for r first.

Step-by-Step Process
Use when you know two terms of a geometric sequence and need to find a (first term) and r (common ratio)
1
Write two equations using aβ‚™ = a Β· rⁿ⁻¹ for each given term.
2
Divide equation 2 by equation 1 (larger index Γ· smaller index). This cancels a completely.
3
Solve for r by taking the appropriate root.
4
Substitute r back into either original equation to solve for a.
5
Check: verify that your a and r produce both given terms correctly.
πŸ“Œ Example 1 β€” aβ‚‚ = 6 and aβ‚… = 48   (Find a and r)
1
Write two equations:
   aβ‚‚ = a Β· rΒΉ = 6   β†’   ar = 6     …(eq 1)
   aβ‚… = a Β· r⁴ = 48   β†’   ar⁴ = 48   …(eq 2)
2
Divide eq 2 by eq 1:   ar⁴ / ar = 48/6  β†’  rΒ³ = 8
3
Solve for r:   r = βˆ›8 = r = 2
4
Substitute r = 2 into eq 1:   a(2) = 6  β†’  a = 3
βœ“
Check:   aβ‚‚ = 3Β·2ΒΉ = 6 βœ…    aβ‚… = 3Β·2⁴ = 3Β·16 = 48 βœ…
First term a = 3 Β· Common ratio r = 2 Β· Sequence: 3, 6, 12, 24, 48…
πŸ“Œ Example 2 β€” a₁ = 80 and aβ‚„ = 10   (Decreasing sequence)
1
Write two equations:
   a₁ = a Β· r⁰ = 80  β†’  a = 80       …(eq 1)
   aβ‚„ = a Β· rΒ³ = 10  β†’  arΒ³ = 10   …(eq 2)
2
Since a = 80 from eq 1, substitute directly into eq 2:   80rΒ³ = 10
3
Solve for r:   rΒ³ = 10/80 = 1/8  β†’  r = βˆ›(1/8) = r = 1/2
4
a is already known:   a = 80
βœ“
Check:   a₁ = 80 βœ…    aβ‚„ = 80Β·(1/2)Β³ = 80Β·(1/8) = 10 βœ…
First term a = 80 Β· Common ratio r = 1/2 Β· Sequence: 80, 40, 20, 10…
πŸ“Œ Example 3 β€” aβ‚‚ = βˆ’6 and aβ‚„ = βˆ’54   (Negative terms)
1
Write two equations:
   aβ‚‚ = arΒΉ = βˆ’6      …(eq 1)
   aβ‚„ = arΒ³ = βˆ’54   …(eq 2)
2
Divide eq 2 by eq 1:   arΒ³/ar = βˆ’54/βˆ’6  β†’  rΒ² = 9
3
Solve for r:   r = Β±3. Both are valid β€” check which makes the sequence consistent. Since aβ‚‚ and aβ‚„ are both negative and terms multiply by r twice, r = 3 keeps them negative if a is negative. We'll find a next.
4
Use r = 3 in eq 1:   a(3) = βˆ’6  β†’  a = βˆ’2
Use r = βˆ’3 in eq 1:   a(βˆ’3) = βˆ’6  β†’  a = 2
βœ“
Both work! Two valid sequences:   βˆ’2, βˆ’6, βˆ’18, βˆ’54… (r=3)   or   2, βˆ’6, 18, βˆ’54… (r=βˆ’3)
Two solutions: (a=βˆ’2, r=3) or (a=2, r=βˆ’3). Both produce aβ‚‚=βˆ’6 and aβ‚„=βˆ’54.
πŸ“Œ Example 4 β€” Bonus: Use sum formula with system   S∞ = 12, a₁ = 4. Find r.
1
Recall: Infinite geometric series sum: S∞ = a/(1βˆ’r)   when |r| < 1
2
Substitute known values:   12 = 4/(1βˆ’r)
3
Multiply both sides by (1βˆ’r):   12(1βˆ’r) = 4  β†’  12 βˆ’ 12r = 4  β†’  βˆ’12r = βˆ’8
4
Solve:   r = 8/12 = r = 2/3
βœ“
Check:   S∞ = 4/(1 βˆ’ 2/3) = 4/(1/3) = 4 Γ— 3 = 12 βœ…    |r| = 2/3 < 1 βœ…
Common ratio r = 2/3 Β· Sequence: 4, 8/3, 16/9, … Β· Sum converges to 12
Given Info Equations to Write Key Step
Two terms aβ‚˜ and aβ‚™ arᡐ⁻¹ = value₁
arⁿ⁻¹ = valueβ‚‚
Divide bigger by smaller β†’ solves for r
First term a₁ given a = known
arⁿ⁻¹ = value
Substitute a directly, solve for r
Sum S∞ and a given S∞ = a/(1βˆ’r) One equation, one unknown β€” solve for r
rΒ² after division r = ±√(value) Check both Β± β€” may yield 2 valid sequences