<p>Here are a couple that would save a lot of time:</p>
<p>Area of a regular polygon given side length:</p>
<p>Disp “Change mode to degrees, N = number of sides”
Prompt N
360/(2N) -> A
Disp “S = side length”
Prompt S
(S/2)/tan(A) -> H
.5(SH) -> B
BN -> Z
Disp “Area is”
Disp Z
Stop</p>
<p>Finding average rate given 2 rates:</p>
<p>Disp “A and B are 2 given rates”
Prompt A
Prompt B
2/((1/A)+(1/B)) -> R
Disp “Average rate is”
Disp R
Stop</p>
<p>1 version of Law of cosines (find an angle if 3 sides of any triangle are known)</p>
<p>Disp “A, B, and C are side lengths, C is side with desired angle, change mode to degrees”
Prompt A
Prompt B
Prompt C
cos^-1 ((C^2 - A^2 - B^2)/((-2)(A)(B)) -> E
Disp “Angle C is”
Disp E
Stop</p>
<p>Heron’s formula (finding area of any triangle given length of sides)</p>
<p>Disp “A, B, and C are side lengths”
Prompt A
Prompt B
Prompt C
(A+B+C)/2 -> S
sqroot(S(S-A)(S-B)(S-C)) -> D
Disp “Area is”
Disp D
Stop</p>
<p>Alternate form of Heron’s formula (finding area of any triangle given 3 coordinates)</p>
<p>Disp “(A,B), (C,D), and (E,F) are coordinates”
Prompt A,B,C,D,E,F
sqroot((A-C)^2 + (B-D)^2) -> X
sqroot((C-E)^2 + (D-F)^2) -> Y
sqroot((E-A)^2 + (F-B)^2) -> Z
(X+Y+Z)/2 -> S
sqroot((S)(S-X)(S-Y)(S-Z)) -> G
Disp “Area is”
Disp G
Stop </p>
<p>Not sure how much these will really help, but if you’re bored, might as well put them in. Who knows. They could end up helping you on the actual test.</p>