Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
4218 views
#Line 1-11 blank.

Evaluate the following using SAGE. Use the show command to make the output "pretty".

  1. All 6 trig functions on 5π/6

  2. All 6 trig function on 9π/2

  3. sin-1(-.5)

  4. Solve sin(θ)=-.75 for θ

  5. Solve tan(φ)=100 for φ

#Complete the above problems in the space below show(sin(5*pi/6))
12\displaystyle \frac{1}{2}
show(cos(5*pi/6))
123\displaystyle -\frac{1}{2} \, \sqrt{3}
show(tan(5*pi/6))
133\displaystyle -\frac{1}{3} \, \sqrt{3}
show(sec(5*pi/6))
233\displaystyle -\frac{2}{3} \, \sqrt{3}
show(csc(5*pi/6))
2\displaystyle 2
show(cot(5*pi/6))
3\displaystyle -\sqrt{3}
show(sin(9*pi/2))
1\displaystyle 1
show(cos(9*pi/2))
0\displaystyle 0
show(tan(9*pi/2))
\displaystyle \infty
show(sec(9*pi/2))
\displaystyle \infty
show(csc(9*pi/2))
1\displaystyle 1
show(cot(9*pi/2))
0\displaystyle 0
show(asin(-.5))
0.523598775598299\displaystyle -0.523598775598299
theta=var('theta') ans=solve(sin(theta)==-.75,theta) ans
[theta == -arcsin(3/4)]
-arcsin(3/4).n()
-0.848062078981481
phi=var('phi') ans=solve(tan(phi)==100,phi) ans
[phi == arctan(100)]
arctan(100).n()
1.56079666010823