Photo AI

Last Updated Sep 27, 2025

Angle between Lines Simplified Revision Notes

Revision notes with simplified explanations to understand Angle between Lines quickly and effectively.

user avatar
user avatar
user avatar
user avatar
user avatar

287+ students studying

6.1.3 Angle between Lines

Introduction

The scalar (dot) product of two vectors is a fundamental tool in 3D geometry. It is used to:

  1. Find the angle between two vectors.
  2. Express the equation of a plane.
  3. Calculate angles between lines, between planes, and between a line and a plane. The scalar product formula is:
a×b=abcosθ\mathbf{a} \times \mathbf{b} = |\mathbf{a}| |\mathbf{b}| \cos \theta

where θ\theta is the angle between a\mathbf{a} and b\mathbf{b}.

Key Applications of the Scalar Product

Angle Between Two Lines

The angle between two lines is the angle between their direction vectors.

Let b1\mathbf{b}_1 and b2\mathbf{b}_2 be the direction vectors of two lines:

cosθ=b1b2b1b2\cos \theta = \frac{\mathbf{b}_1 \cdot \mathbf{b}_2}{|\mathbf{b}_1||\mathbf{b}_2|}

Equation of a Plane

The equation of a plane can be expressed as:

r×n=k\mathbf{r} \times \mathbf{n} = k

where:

  • r\mathbf{r} is the position vector of any point on the plane.
  • n\mathbf{n} is the normal vector to the plane.
  • kk is a constant determined by substituting a point r0\mathbf{r}_0 into n×r0=k\mathbf{n} \times \mathbf{r}_0 = k

Angle Between Two Planes

The angle between two planes is the angle between their normal vectors.

Let n1\mathbf{n}_1 and n2\mathbf{n}_2 be the normal vectors of two planes:

cosθ=n1n2n1n2\cos \theta = \frac{\mathbf{n}_1 \cdot \mathbf{n}_2}{|\mathbf{n}_1||\mathbf{n}_2|}

Angle Between a Line and a Plane

The angle between a line and a plane is the complement of the angle between the line's direction vector and the plane's normal vector.

If b\mathbf{b} is the direction vector of the line and n\mathbf{n} is the plane's normal vector:

sinθ=b×nbn\sin \theta = \frac{\mathbf{b} \times \mathbf{n}}{|\mathbf{b}||\mathbf{n}|}

where θ\theta is the angle between the line and the plane.

Worked Examples

lightbulbExample

Example 1: Find the Angle Between Two Lines

Find the angle between the lines:

r1=(123)+λ(425)\mathbf{r}_1 = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + \lambda \begin{pmatrix} 4 \\ -2 \\ 5 \end{pmatrix}r2=(210)+μ(134)\mathbf{r}_2 = \begin{pmatrix} 2 \\ -1 \\ 0 \end{pmatrix} + \mu \begin{pmatrix} -1 \\ 3 \\ 4 \end{pmatrix}

Step 1: Extract direction vectors:

b1=(425)\mathbf{b}_1 = \begin{pmatrix} 4 \\ -2 \\ 5 \end{pmatrix}b2=(134)\mathbf{b}_2 = \begin{pmatrix} -1 \\ 3 \\ 4 \end{pmatrix}

Step 2: Compute the dot product:

b1×b2=(4)(1)+(2)(3)+(5)(4)\mathbf{b}_1 \times \mathbf{b}_2 = (4)(-1) + (-2)(3) + (5)(4) =46+20=:highlight[10]= -4 - 6 + 20 = :highlight[10]

Step 3: Find magnitudes:

b1=42+(2)2+52=16+4+25=:highlight[45]|\mathbf{b}_1| = \sqrt{4^2 + (-2)^2 + 5^2} = \sqrt{16 + 4 + 25} = :highlight[\sqrt{45}]b2=(1)2+32+42=1+9+16=:highlight[26]|\mathbf{b}_2| = \sqrt{(-1)^2 + 3^2 + 4^2} = \sqrt{1 + 9 + 16} = :highlight[\sqrt{26}]

Step 4: Calculate cosθ \cos \theta:

cosθ=b1×b2b1b2=1045×26=101170\cos \theta = \frac{\mathbf{b}_1 \times \mathbf{b}_2}{|\mathbf{b}_1||\mathbf{b}_2|} = \frac{10}{\sqrt{45} \times \sqrt{26}} = \frac{10}{\sqrt{1170}}

Step 5: Find θ\theta:

θ=arccos(101170)\theta = \arccos\left(\frac{10}{\sqrt{1170}}\right)
lightbulbExample

Example 2: Find the Equation of a Plane

Find the equation of the plane passing through (1, 2, 3) with normal vector

n=(214).\mathbf{n} = \begin{pmatrix} 2 \\ -1 \\ 4 \end{pmatrix}.

Step 1: Substitute into r×n=k\mathbf{r} \times \mathbf{n} = k

Let r0=(123)\mathbf{r}_0 = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}

k=n×r0=(2)(1)+(1)(2)+(4)(3)k = \mathbf{n} \times \mathbf{r}_0 = (2)(1) + (-1)(2) + (4)(3) =22+12=:highlight[12]= 2 - 2 + 12 = :highlight[12]

Step 2: Write the equation:

r×(214)=12\mathbf{r} \times \begin{pmatrix} 2 \\ -1 \\ 4 \end{pmatrix} = 12

or in Cartesian form:

:success[2xy+4z=12]:success[2x - y + 4z = 12]
lightbulbExample

Example 3: Angle Between Two Planes

Find the angle between the planes:

xy+3z=5,4x+yz=7x - y + 3z = 5, \quad 4x + y - z = 7

Step 1: Extract normal vectors:

n1=(213)\mathbf{n}_1 = \begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix}n2=(411)\mathbf{n}_2 = \begin{pmatrix} 4 \\ 1 \\ -1 \end{pmatrix}

Step 2: Compute the dot product:

n1×n2=(2)(4)+(1)(1)+(3)(1)\mathbf{n}_1 \times \mathbf{n}_2 = (2)(4) + (-1)(1) + (3)(-1) =813=:highlight[4]= 8 - 1 - 3 = :highlight[4]

Step 3: Find magnitudes:

n1=22+(1)2+32|\mathbf{n}_1| = \sqrt{2^2 + (-1)^2 + 3^2} =4+1+9=:highlight[14]= \sqrt{4 + 1 + 9} = :highlight[\sqrt{14}]n2=42+12+(1)2|\mathbf{n}_2| = \sqrt{4^2 + 1^2 + (-1)^2} =16+1+1=:highlight[18]= \sqrt{16 + 1 + 1} = :highlight[\sqrt{18}]

Step 4: Calculate cosθ\cos \theta:

cosθ=n1×n2n1n2=414×18\cos \theta = \frac{\mathbf{n}_1 \times \mathbf{n}_2}{|\mathbf{n}_1||\mathbf{n}_2|} = \frac{4}{\sqrt{14} \times \sqrt{18}} =4252=467=:highlight[237]= \frac{4}{\sqrt{252}} = \frac{4}{6\sqrt{7}} = :highlight[\frac{2}{3\sqrt{7}}]

Step 5: Find θ\theta:

θ=arccos(237)\theta = \arccos\left(\frac{2}{3\sqrt{7}}\right)

Note Summary

infoNote

Common Mistakes:

  1. Incorrectly applying the scalar product: Always ensure the vectors are correctly substituted into a×b=abcosθ\mathbf{a} \times \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos \theta

  2. Mixing up line and plane vectors: Use direction vectors for lines and normal vectors for planes.

  3. Neglecting to normalize vectors: Forgetting to divide by magnitudes leads to incorrect cosθcos⁡θ values.

  4. Confusing sine and cosine relationships: For line-plane angles, ensure the use of sinθ\sin \theta instead of cosθ\cos \theta.

  5. Forgetting absolute values in cosθ\cos \theta: Negative dot products can occur, but the magnitude of cosθ\cos \theta should always be between 0 and 1.

infoNote

Key Formulas:

  1. Scalar Product:
a×b=abcosθ\mathbf{a} \times \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos \theta
  1. Angle Between Two Lines:
cosθ=b1×b2b1b2\cos \theta = \frac{\mathbf{b}_1 \times \mathbf{b}_2}{|\mathbf{b}_1||\mathbf{b}_2|}
  1. Equation of a Plane:
r×n=k,orax+by+cz=d\mathbf{r} \times \mathbf{n} = k, \quad \text{or} \quad ax + by + cz = d
  1. Angle Between Two Planes:
cosθ=n1×n2n1n2\cos \theta = \frac{\mathbf{n}_1 \times \mathbf{n}_2}{|\mathbf{n}_1||\mathbf{n}_2|}
  1. Angle Between a Line and a Plane:
sinθ=b×nbn\sin \theta = \frac{\mathbf{b} \times \mathbf{n}}{|\mathbf{b}||\mathbf{n}|}
Books

Only available for registered users.

Sign up now to view the full note, or log in if you already have an account!

500K+ Students Use These Powerful Tools to Master Angle between Lines

Enhance your understanding with flashcards, quizzes, and exams—designed to help you grasp key concepts, reinforce learning, and master any topic with confidence!

40 flashcards

Flashcards on Angle between Lines

Revise key concepts with interactive flashcards.

Try Further Maths Core Pure Flashcards

4 quizzes

Quizzes on Angle between Lines

Test your knowledge with fun and engaging quizzes.

Try Further Maths Core Pure Quizzes

29 questions

Exam questions on Angle between Lines

Boost your confidence with real exam questions.

Try Further Maths Core Pure Questions

27 exams created

Exam Builder on Angle between Lines

Create custom exams across topics for better practice!

Try Further Maths Core Pure exam builder

50 papers

Past Papers on Angle between Lines

Practice past papers to reinforce exam experience.

Try Further Maths Core Pure Past Papers

Other Revision Notes related to Angle between Lines you should explore

Discover More Revision Notes Related to Angle between Lines to Deepen Your Understanding and Improve Your Mastery

96%

114 rated

Vector Lines

Equations of Lines in 3D

user avatar
user avatar
user avatar
user avatar
user avatar

255+ studying

196KViews

96%

114 rated

Vector Lines

Pairs of Lines in 3D

user avatar
user avatar
user avatar
user avatar
user avatar

483+ studying

200KViews

96%

114 rated

Vector Lines

Shortest Distances - Lines

user avatar
user avatar
user avatar
user avatar
user avatar

491+ studying

200KViews
Load more notes

Join 500,000+ A-Level students using SimpleStudy...

Join Thousands of A-Level Students Using SimpleStudy to Learn Smarter, Stay Organized, and Boost Their Grades with Confidence!

97% of Students

Report Improved Results

98% of Students

Recommend to friends

500,000+

Students Supported

50 Million+

Questions answered