Find UNKNOWN_MEASURE
.
Round to the nearest tenth.
You can use the law of cosines:
\qquad
\pink{UNKNOWN_SIDE}^2 \quad = \quad
\blue{"abc"[(UNKNOWN + 1) % 3]}^2 +
\green{"abc"[(UNKNOWN + 2) % 3]}^2 -
2\blue{"abc"[(UNKNOWN + 1) % 3]}
\green{"abc"[(UNKNOWN + 2) % 3]}
\space\cos(\pink{"ABC"[UNKNOWN]})
Plug in the known values:
\qquad
\pink{UNKNOWN_SIDE}^2 \quad = \quad
\blue{KNOWN_SIDE_1}^2 +
\green{KNOWN_SIDE_2}^2 -
2(\blue{KNOWN_SIDE_1})
(\green{KNOWN_SIDE_2})
\space\cos(\pink{ANGLES[UNKNOWN]^\circ})
\qquad
\pink{UNKNOWN_SIDE}^2 \quad = \quad
KNOWN_SIDE_1 * KNOWN_SIDE_1 +
KNOWN_SIDE_2 * KNOWN_SIDE_2
-
2 * KNOWN_SIDE_1 * KNOWN_SIDE_2
\cdot\cos(\pink{ANGLES[UNKNOWN]^\circ})
Evaluate and simplify the right side:
\qquad
\pink{UNKNOWN_SIDE}^2 \quad \approx \quad
roundTo(9,
KNOWN_SIDE_1 * KNOWN_SIDE_1 +
KNOWN_SIDE_2 * KNOWN_SIDE_2 -
2 * KNOWN_SIDE_1 * KNOWN_SIDE_2 *
cos(ANGLES[UNKNOWN] * Math.PI / 180))
Take the positive square root of both sides (we only need to worry about the positive square root because the side of a triangle can't have negative length):
\qquad
\pink{UNKNOWN_SIDE} \quad \approx \quad
\sqrt{roundTo(9,
KNOWN_SIDE_1 * KNOWN_SIDE_1 +
KNOWN_SIDE_2 * KNOWN_SIDE_2 -
2 * KNOWN_SIDE_1 * KNOWN_SIDE_2 *
cos(ANGLES[UNKNOWN] * Math.PI / 180))
}
Evaluate and round to the nearest tenth:
\qquad \pink{UNKNOWN_MEASURE}
\quad = \quad \pink{UNKNOWN_SIDE}
\quad \approx \quad SOLUTION
Find m\angle UNKNOWN_ANGLE
.
Round to the nearest degree.
\Large{^\circ}
You can use the law of cosines:
\qquad
\pink{"abc"[UNKNOWN]}^2 \quad = \quad
\blue{"abc"[(UNKNOWN + 1) % 3]}^2 +
\green{"abc"[(UNKNOWN + 2) % 3]}^2 -
2\blue{"abc"[(UNKNOWN + 1) % 3]}
\green{"abc"[(UNKNOWN + 2) % 3]}
\space\cos(\pink{"ABC"[UNKNOWN]})
Rewrite the law of cosines to solve for
\cos(\pink{"ABC"[UNKNOWN]})
:
\qquad
\cos(\pink{"ABC"[UNKNOWN]}) \quad = \quad
\dfrac{
\blue{"abc"[(UNKNOWN + 1) % 3]}^2 +
\green{"abc"[(UNKNOWN + 2) % 3]}^2 -
\pink{"abc"[UNKNOWN]}^2
}{2\blue{"abc"[(UNKNOWN + 1) % 3]}
\green{"abc"[(UNKNOWN + 2) % 3]}}
Plug in the known values:
\qquad
\cos(\pink{"ABC"[UNKNOWN]}) \quad = \quad
\dfrac{
\blue{KNOWN_SIDE_1}^2 +
\green{KNOWN_SIDE_2}^2 -
\pink{SIDES[UNKNOWN]}^2
}{2(\blue{KNOWN_SIDE_1})
(\green{KNOWN_SIDE_2})}
Simplify the right side:
\qquad
\cos(\pink{"ABC"[UNKNOWN]}) \quad = \quad
COS_UNKNOWN
Evaluate the inverse cosine to find
m\angle UNKNOWN_ANGLE
and round to the nearest degree:
\qquad
\pink{m\angle UNKNOWN_ANGLE}
\quad = \quad \cos^{-1}\left(COS_UNKNOWN\right)
\quad \approx \quad \pink{SOLUTION^\circ}