# Coordinate Geometry Problem Solution
## Problem Statement
Determine the coordinates of the point **P** on the line **y = -x + 6** such that **P** is equidistant from the points **A(10, -10)** and **O(0, 0)**. Express your answer as an ordered pair **(a, b)**.
---
## Solution Process
### Step 1: Define Point P
Since **P** lies on the line **y = -x + 6**, its coordinates can be expressed as:
$$
P = (x, -x + 6)
$$
### Step 2: Distance Formula
The distance between two points $(x_1, y_1)$ and $(x_2, y_2)$ is:
$$
d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}
$$
#### Distance from P to A:
$$
PA = \sqrt{(x - 10)^2 + (-x + 6 + 10)^2} = \sqrt{(x - 10)^2 + (-x + 16)^2}
$$
#### Distance from P to O:
$$
PO = \sqrt{(x - 0)^2 + (-x + 6 - 0)^2} = \sqrt{x^2 + (-x + 6)^2}
$$
### Step 3: Equate Distances
Set $PA = PO$ and square both sides to eliminate radicals:
$$
(x - 10)^2 + (-x + 16)^2 = x^2 + (-x + 6)^2
$$
### Step 4: Expand and Simplify
Expand all terms:
$$
(x^2 - 20x + 100) + (x^2 - 32x + 256) = x^2 + (x^2 - 12x + 36)
$$
Combine like terms:
$$
2x^2 - 52x + 356 = 2x^2 - 12x + 36
$$
Subtract $2x^2 - 12x + 36$ from both sides:
$$
-40x + 320 = 0
$$
Solve for $x$:
$$
x = 8
$$
### Step 5: Find Corresponding y-Coordinate
Substitute $x = 8$ into $y = -x + 6$:
$$
y = -8 + 6 = -2
$$
### Final Answer
The coordinates of point **P** are:
$$
\boxed{(8, -2)}
$$
---
## Verification
- **PA**: $\sqrt{(8 - 10)^2 + (-2 + 10)^2} = \sqrt{4 + 64} = \sqrt{68}$
- **PO**: $\sqrt{8^2 + (-2)^2} = \sqrt{64 + 4} = \sqrt{68}$
Both distances are equal, confirming the solution is correct.