Math Problem Statement

2 circles are tangent with each other at one point. One has a radius of 12 with a center named P and another has a radius of 8 with a center named Q. A common external tangent intercepts line PQ at R. Find QR.

Asymptote code below [asy] unitsize(0.3 cm);

pair A, B, C, D, E;

A = (0,0); B = (8,0); C = (20,0); D = intersectionpoint(Circle(A,5), arc((A + C)/2, abs(A - C)/2, 0, 180)); E = intersectionpoint(Circle(B,3), arc((B + C)/2, abs(B - C)/2, 0, 180));

draw(Circle(A,5)); draw(Circle(B,3)); draw(A--D); draw(B--E);

dot("$P$", A, S); dot("$Q$", B, S);

label("$8$", (B + E)/2, W, red); label("$12$", (A + D)/2, W, red); [/asy]

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
Circles
Tangents
Right Triangles

Formulas

Length of external tangent between two circles: \( \sqrt{PQ^2 - (r_1 - r_2)^2} \)
Distance between two tangent circles: \( PQ = r_1 + r_2 \)

Theorems

The Tangent-Secant Theorem
Pythagorean Theorem

Suitable Grade Level

Grades 10-12