```html

Intersection and Angles Between Lines

1. Point of Intersection of Two Lines

When two distinct lines in a plane are not parallel, they must intersect at exactly one point. Finding this point is a fundamental problem in coordinate geometry. We can find the point of intersection by solving the system of linear equations that represent the two lines simultaneously.

Consider two lines with equations:

Line 1: a1x + b1y + c1 = 0

Line 2: a2x + b2y + c2 = 0

To find the point of intersection (x, y), we solve these two equations. There are several methods to do this, including substitution, elimination, and using determinants (Cramer's Rule).

Method 1: Elimination Method

Multiply the first equation by b2 and the second by b1:

a1b2x + b1b2y + c1b2 = 0

a2b1x + b1b2y + c2b1 = 0

Subtract the second modified equation from the first:

(a1b2 - a2b1)x + (c1b2 - c2b1) = 0

If (a1b2 - a2b1) ≠ 0, then:

x = (c2b1 - c1b2) / (a1b2 - a2b1)

Similarly, multiply the first equation by a2 and the second by a1:

a1a2x + b1a2y + c1a2 = 0

a1a2x + b2a1y + c2a1 = 0

Subtract the first modified equation from the second:

(b2a1 - b1a2)y + (c2a1 - c1a2) = 0

If (a1b2 - a2b1) ≠ 0, then:

y = (c1a2 - c2a1) / (a1b2 - a2b1)

Method 2: Cramer's Rule

For the system of equations:

a1x + b1y = -c1

a2x + b2y = -c2

The determinant of the coefficient matrix is D = a1b2 - a2b1.

The determinant Dx is obtained by replacing the x-coefficients with the constants:

Dx = (-c1)b2 - (-c2)b1 = c2b1 - c1b2

The determinant Dy is obtained by replacing the y-coefficients with the constants:

Dy = a1(-c2) - a2(-c1) = c1a2 - c2a1

If D ≠ 0, the unique solution is:

x = Dx / D = (c2b1 - c1b2) / (a1b2 - a2b1)

y = Dy / D = (c1a2 - c2a1) / (a1b2 - a2b1)

Condition for Intersection: Two lines a1x + b1y + c1 = 0 and a2x + b2y + c2 = 0 intersect at a unique point if and only if their slopes are different, which translates to a1b2 - a2b1 ≠ 0. If a1b2 - a2b1 = 0, the lines are either parallel or coincident.

Example:

Find the point of intersection of the lines 2x + 3y - 5 = 0 and x - y + 1 = 0.

Here, a1=2, b1=3, c1=-5 and a2=1, b2=-1, c2=1.

Using Cramer's Rule:

D = (2)(-1) - (1)(3) = -2 - 3 = -5

Dx = (1)(3) - (-5)(-1) = 3 - 5 = -2

Dy = (-5)(1) - (1)(2) = -5 - 2 = -7

x = Dx / D = -2 / -5 = 2/5

y = Dy / D = -7 / -5 = 7/5

The point of intersection is (2/5, 7/5).

2. Angle Between Two Lines

The angle between two intersecting lines is the acute angle formed at their intersection point. If the lines have slopes m1 and m2, the tangent of the angle θ between them is given by the formula:

tan θ = |(m1 - m2) / (1 + m1m2)|

This formula gives the tangent of the acute angle. If (1 + m1m2) = 0, then m1m2 = -1, which means the lines are perpendicular, and the angle is 90 degrees (π/2 radians).

Derivation of the formula:

Let α1 and α2 be the angles of inclination of the two lines with the positive x-axis. So, m1 = tan α1 and m2 = tan α2.

The angle θ between the two lines is the difference between their angles of inclination, i.e., θ = α1 - α2 or θ = α2 - α1.

Using the tangent subtraction formula:

tan θ = tan(α1 - α2) = (tan α1 - tan α2) / (1 + tan α1 tan α2)

Substituting m1 and m2:

tan θ = (m1 - m2) / (1 + m1m2)

Since we are usually interested in the acute angle, we take the absolute value:

tan θ = |(m1 - m2) / (1 + m1m2)|

Special Cases:

  1. Perpendicular Lines: If two lines are perpendicular, the product of their slopes is -1. That is, m1m2 = -1. In this case, the denominator (1 + m1m2) becomes zero, and tan θ approaches infinity, meaning θ = 90°.
  2. Parallel Lines: If two lines are parallel, their slopes are equal, m1 = m2. In this case, the numerator (m1 - m2) becomes zero, so tan θ = 0, meaning θ = 0°.
Mnemonic for Angle Formula: Remember "Top-Bottom": tan θ = |(Top Slope - Bottom Slope) / (1 + Product of Slopes)|.

Angle between lines in general form:

Consider two lines given in the general form:

Line 1: a1x + b1y + c1 = 0. Its slope is m1 = -a1/b1.

Line 2: a2x + b2y + c2 = 0. Its slope is m2 = -a2/b2.

Substitute these into the formula:

tan θ = |((-a1/b1) - (-a2/b2)) / (1 + (-a1/b1)(-a2/b2))|

tan θ = |((-a1b2 + a2b1) / b1b2) / ((b1b2 + a1a2) / b1b2)|

tan θ = |(a2b1 - a1b2) / (a1a2 + b1b2)|

Alternatively, we can use the dot product of their normal vectors. The normal vector to Line 1 is n1 = (a1, b1) and to Line 2 is n2 = (a2, b2).

The angle φ between the normal vectors is given by:

cos φ = (n1 · n2) / (|n1| |n2|) = (a1a2 + b1b2) / (√(a12 + b12) √(a22 + b22))

The angle between the lines is either φ or 180° - φ. The acute angle θ between the lines is such that cos θ = |cos φ|.

So, cos θ = |(a1a2 + b1b2)| / (√(a12 + b12) √(a22 + b22))

And tan θ = |(a2b1 - a1b2)| / (a1a2 + b1b2).

Shortcut for Angle between lines (General Form): Let the lines be a1x + b1y + c1 = 0 and a2x + b2y + c2 = 0.
  • Acute angle θ: tan θ = |(a2b1 - a1b2) / (a1a2 + b1b2)|
  • Acute angle θ: cos θ = |(a1a2 + b1b2)| / (√(a12 + b12) √(a22 + b22))
  • Perpendicular lines: a1a2 + b1b2 = 0
  • Parallel lines: a1/a2 = b1/b2 ≠ c1/c2 (for distinct parallel lines)
  • Coincident lines: a1/a2 = b1/b2 = c1/c2

Example:

Find the acute angle between the lines y - 2x + 1 = 0 and y + 3x - 2 = 0.

Line 1: -2x + y + 1 = 0. Slope m1 = -(-2)/1 = 2.

Line 2: 3x + y - 2 = 0. Slope m2 = -(3)/1 = -3.

Using the formula tan θ = |(m1 - m2) / (1 + m1m2)|:

tan θ = |(2 - (-3)) / (1 + (2)(-3))|

tan θ = |(2 + 3) / (1 - 6)|

tan θ = |5 / -5| = |-1| = 1

Since tan θ = 1, the acute angle θ = 45° or π/4 radians.

Example 2:

Find the angle between the lines 3x + 4y - 7 = 0 and 5x - 12y + 3 = 0.

Line 1: a1=3, b1=4.

Line 2: a2=5, b2=-12.

Using cos θ = |(a1a2 + b1b2)| / (√(a12 + b12) √(a22 + b22)):

a1a2 + b1b2 = (3)(5) + (4)(-12) = 15 - 48 = -33

√(a12 + b12) = √(32 + 42) = √(9 + 16) = √25 = 5

√(a22 + b22) = √(52 + (-12)2) = √(25 + 144) = √169 = 13

cos θ = |-33| / (5 * 13) = 33 / 65

The acute angle is θ = cos-1(33/65).

3. Bisectors of the Angle Between Two Lines

When two lines intersect, they form two pairs of vertically opposite angles. The lines that bisect these angles are called the angle bisectors. There are two angle bisectors, and they are always perpendicular to each other.

Let the two lines be:

Line 1: a1x + b1y + c1 = 0

Line 2: a2x + b2y + c2 = 0

A point (x, y) lies on an angle bisector if its perpendicular distance from both lines is equal (or equal in magnitude).

The distance from (x, y) to Line 1 is |a1x + b1y + c1| / √(a12 + b12).

The distance from (x, y) to Line 2 is |a2x + b2y + c2| / √(a22 + b22).

Equating these distances gives the equations of the angle bisectors:

(a1x + b1y + c1) / √(a12 + b12) = ± (a2x + b2y + c2) / √(a22 + b22)

Equations of Angle Bisectors:

(a1x + b1y + c1) / √(a12 + b12) = ± (a2x + b2y + c2) / √(a22 + b22)

The '+' sign gives one bisector, and the '-' sign gives the other bisector.

Determining the Bisector of the Acute/Obtuse Angle:

To determine which sign corresponds to the acute or obtuse angle bisector, we can use the signs of the constant terms and the expression a1a2 + b1b2.

First, make the constant terms c1 and c2 positive. If they are negative, multiply the entire equation by -1.

Let the equations be a1x + b1y + c1 = 0 and a2x + b2y + c2 = 0 with c1 > 0 and c2 > 0.

  1. Case 1: If a1a2 + b1b2 > 0:
    • The bisector of the obtuse angle is given by the '+' sign: (a1x + b1y + c1) / √(a12 + b12) = + (a2x + b2y + c2) / √(a22 + b22)
    • The bisector of the acute angle is given by the '-' sign: (a1x + b1y + c1) / √(a12 + b12) = - (a2x + b2y + c2) / √(a22 + b22)
  2. Case 2: If a1a2 + b1b2 < 0:
    • The bisector of the obtuse angle is given by the '-' sign: (a1x + b1y + c1) / √(a12 + b12) = - (a2x + b2y + c2) / √(a22 + b22)
    • The bisector of the acute angle is given by the '+' sign: (a1x + b1y + c1) / √(a12 + b12) = + (a2x + b2y + c2) / √(a22 + b22)
Quick Check for Acute/Obtuse Bisector:

1. Ensure constant terms are positive in both line equations.

2. Calculate a1a2 + b1b2.

3. If a1a2 + b1b2 > 0, use '+' for obtuse bisector, '-' for acute bisector.

4. If a1a2 + b1b2 < 0, use '-' for obtuse bisector, '+' for acute bisector.

Determining the Bisector of the Angle Containing the Origin:

To find the bisector of the angle that contains the origin (0,0), substitute (0,0) into the expressions (a1x + b1y + c1) / √(a12 + b12) and (a2x + b2y + c2) / √(a22 + b22).

Let the equations of the bisectors be:

B1: (a1x + b1y + c1) / √(a12 + b12) + (a2x + b2y + c2) / √(a22 + b22) = 0

B2: (a1x + b1y + c1) / √(a12 + b12) - (a2x + b2y + c2) / √(a22 + b22) = 0

Substitute (0,0) into the left side of B1. If the result is positive, then B1 is the bisector of the angle containing the origin. If the result is negative, then B2 is the bisector of the angle containing the origin.

Shortcut for Bisector Containing Origin:

1. Make constant terms positive.

2. Evaluate c1/√(a12 + b12) ± c2/√(a22 + b22).

3. If the expression evaluates to positive, the bisector with the '+' sign is the one containing the origin.

4. If the expression evaluates to negative, the bisector with the '-' sign is the one containing the origin.

Example:

Find the equations of the bisectors of the angle between the lines 3x - 4y + 7 = 0 and 12x + 5y - 13 = 0.

Line 1: 3x - 4y + 7 = 0. a1=3, b1=-4, c1=7. √(a12 + b12) = √(9 + 16) = 5.

Line 2: 12x + 5y - 13 = 0. a2=12, b2=5, c2=-13. √(a22 + b22) = √(144 + 25) = 13.

The equations of the bisectors are:

(3x - 4y + 7) / 5 = ± (12x + 5y - 13) / 13

Bisector 1 (using + sign):

13(3x - 4y + 7) = 5(12x + 5y - 13)

39x - 52y + 91 = 60x + 25y - 65

(60 - 39)x + (25 + 52)y + (-65 - 91) = 0

21x + 77y - 156 = 0

Bisector 2 (using - sign):

13(3x - 4y + 7) = -5(12x + 5y - 13)

39x - 52y + 91 = -60x - 25y + 65

(39 + 60)x + (-52 + 25)y + (91 - 65) = 0

99x - 27y + 26 = 0

Example 2:

Find the bisector of the angle between x + y - 1 = 0 and x - y + 2 = 0 that contains the origin.

Line 1: x + y - 1 = 0. a1=1, b1=1, c1=-1. √(a12 + b12) = √2.

Line 2: x - y + 2 = 0. a2=1, b2=-1, c2=2. √(a22 + b22) = √2.

The equations of the bisectors are:

(x + y - 1) / √2 = ± (x - y + 2) / √2

x + y - 1 = ± (x - y + 2)

Bisector 1 (+ sign):

x + y - 1 = x - y + 2

2y - 3 = 0

Bisector 2 (- sign):

x + y - 1 = -(x - y + 2)

x + y - 1 = -x + y - 2

2x + 1 = 0

Now, let's check which bisector contains the origin. We need to make constant terms positive first. The equations are already in a form where we can check the constant terms' signs.

For Line 1: x + y - 1 = 0. The constant term is negative. For Line 2: x - y + 2 = 0. The constant term is positive.

Let's rewrite the bisector equations by ensuring constant terms are positive first, or use the direct evaluation method.

Method: Evaluate c1/√(a12 + b12) ± c2/√(a22 + b22).

Here, c1 = -1 and c2 = 2. Denominators are both √2.

Bisector 1 (using + sign in the formula): (x + y - 1)/√2 + (x - y + 2)/√2 = 0 => 2x + 1 = 0

Bisector 2 (using - sign in the formula): (x + y - 1)/√2 - (x - y + 2)/√2 = 0 => 2y - 3 = 0

Let's test the origin (0,0) in the original line equations to see which angle contains it.

Line 1: 0 + 0 - 1 = -1 (Negative)

Line 2: 0 - 0 + 2 = 2 (Positive)

Since the signs are different, the bisector of the angle containing the origin is given by the equation where the signs of the two expressions are different. This corresponds to the '-' sign in the general formula: (a1x + b1y + c1) / √(a12 + b12) - (a2x + b2y + c2) / √(a22 + b22) = 0.

This leads to 2y - 3 = 0.

Therefore, the bisector of the angle containing the origin is 2y - 3 = 0.

```