Tangent Lines to Circles: Key Properties 🎯
A tangent line to a circle is a line that touches the circle at exactly one point, called the point of tangency. Understanding the properties of tangent lines is crucial in solving various geometry problems. Let's explore these properties in detail.
Radius and Tangent 📐
- Theorem: A tangent line is perpendicular to the radius drawn to the point of tangency.
- This means if line $l$ is tangent to circle $O$ at point $P$, then $\overline{OP} \perp l$.
- Example: If you have a circle with center $O$ and a tangent line touching the circle at point $A$, then the angle between the radius $OA$ and the tangent line is always $90^{\circ}$.
Two Tangents from a Common Point 🤝
- Theorem: If two tangent segments are drawn to a circle from the same external point, then these segments are congruent.
- If $PA$ and $PB$ are tangent to circle $O$ from point $P$, then $PA = PB$.
- Example: Consider a point $T$ outside a circle. If two tangent lines from $T$ touch the circle at points $M$ and $N$ respectively, then the lengths of the segments $TM$ and $TN$ are equal.
Tangent-Chord Angle 弧
- Theorem: The measure of an angle formed by a tangent and a chord is one-half the measure of the intercepted arc.
- If line $l$ is tangent at point $A$ and $AB$ is a chord, then $m\angle BAC = \frac{1}{2} m\stackrel{\frown}{AB}$.
- Example: Suppose a tangent line at point $Q$ on a circle intercepts chord $QR$. If the arc $QR$ measures $80^{\circ}$, then the angle formed by the tangent and the chord $QR$ is $40^{\circ}$.
Applications and Problem Solving 💡
These properties are useful in solving a variety of geometry problems. For instance, consider the following problem:
Problem:
Circle $O$ has a radius of 5. Point $P$ is 13 units from $O$. Tangents $PA$ and $PB$ are drawn from $P$ to the circle. Find the length of $PA$.
Solution:
- Since $PA$ is tangent to the circle at $A$, $OA \perp PA$.
- Triangle $OAP$ is a right triangle.
- Using the Pythagorean theorem: $OA^2 + PA^2 = OP^2$.
- Substituting the given values: $5^2 + PA^2 = 13^2$.
- $25 + PA^2 = 169$.
- $PA^2 = 144$.
- $PA = 12$.
# Python code to verify the solution
import math
radius = 5
distance_to_point = 13
tangent_length = math.sqrt(distance_to_point**2 - radius**2)
print(f"The length of the tangent is: {tangent_length}")
Thus, the length of $PA$ is 12 units.