Find UNKNOWN_MEASURE.
Round to the nearest tenth.
You can use the law of sines:
\qquad \dfrac{BC}{\sin(m\angle A)} \quad =
\quad \dfrac{AC}{\sin(m\angle B)} \quad =
\quad \dfrac{AB}{\sin(m\angle C)}
Fill in the unknown angle using the fact that the
angles of a triangle always sum to
180^\circ.
\qquad 180^\circ - ANGLE1^\circ -
ANGLE2^\circ \quad = \quad
\pink{TRIANGLE.angles[UNKNOWN]^\circ}
Set up a useful relationship using the law of sines:
\qquad \dfrac{\pink{UNKNOWN_MEASURE}}{\sin(
\pink{TRIANGLE.angles[UNKNOWN]^\circ})}
\quad = \quad\dfrac{\blue{
TRIANGLE.sides[KNOWN]}}{\sin(\blue{
TRIANGLE.angles[KNOWN]^\circ})}
Solve for the unknown side:
\qquad \pink{UNKNOWN_MEASURE} \quad = \quad
\dfrac{\blue{TRIANGLE.sides[KNOWN]}
\cdot
\sin(\pink{TRIANGLE.angles[UNKNOWN]^\circ})
}{
\sin(\blue{TRIANGLE.angles[KNOWN]^\circ})}
Evaluate and round to the nearest tenth:
\qquad \pink{UNKNOWN_MEASURE}
\quad \approx \quad SOLUTION
Find m\angle UNKNOWN_MEASURE.
Round to the nearest degree.
\Large{^\circ}
You can use the law of sines:
\qquad \dfrac{BC}{\sin(m\angle A)} \quad =
\quad \dfrac{AC}{\sin(m\angle B)} \quad =
\quad \dfrac{AB}{\sin(m\angle C)}
Set up a useful relationship using the law of sines:
\qquad \dfrac{\pink{SIDES[UNKNOWN]}}{\sin(
\pink{m\angle UNKNOWN_MEASURE})}
\quad = \quad\dfrac{\blue{
TRIANGLE.sides[KNOWN]}}{\sin(\blue{
ANGLES[KNOWN]^\circ})}
Solve for the sine of the unknown angle:
\qquad \sin(\pink{m\angle UNKNOWN_MEASURE})
\quad = \quad
\dfrac{\pink{TRIANGLE.sides[UNKNOWN]}
\cdot
\sin(\blue{ANGLES[KNOWN]^\circ})
}{\blue{TRIANGLE.sides[KNOWN]}}
Evaluate the right side:
\qquad \sin(\pink{m\angle UNKNOWN_MEASURE})
\quad \approx \quad
roundTo(9, (TRIANGLE.sides[UNKNOWN] *
sin(ANGLES[KNOWN] * Math.PI / 180)) /
TRIANGLE.sides[KNOWN])
Evaluate the inverse sine to find
m\angle UNKNOWN_MEASURE and round to
the nearest degree:
\qquad \pink{m\angle UNKNOWN_MEASURE}
\quad \approx \quad SOLUTION^\circ