Where Can I Find a Table of Exact Values for sin(theta)?

  • Thread starter Thread starter GreenPrint
  • Start date Start date
  • Tags Tags
    Sin Theta
AI Thread Summary
A user is seeking a comprehensive online table of exact values for sin(theta) from 0 to 90 degrees, expressing a desire to avoid manual calculations. Responses suggest that while exact values can be expressed for certain special angles, most require numerical approximations. Tools like Mathematica and Wolfram Alpha are recommended for generating tables of decimal values. Additionally, a web search for "trig table" can yield formatted tables. The discussion highlights the limitations of closed-form expressions for sine values at non-special angles.
GreenPrint
Messages
1,186
Reaction score
0

Homework Statement



Does anyone know were I can find a table on the internet of the exact values of sin theta were theta is any whole angle from zero to ninety degrees

Example
sin 0 degrees
sin 1 degrees
sin 2
sin 3
sin 4
sin 5
...
sin 90

Homework Equations





The Attempt at a Solution



thank you I'm to lazy to calculate all of them on my own does anyone know where i could find a table I got about 10 of them done but don't want to waste hours of my llife calculating all 90 when they have already done so can some one point me in the right direction?
 
Physics news on Phys.org
Short answer: you already wrote down the exact values (they are sin(1o), sin(2o), etc.)

Long answer: only for a few special angles, we can write sin(x) in closed form, for example as \frac{\pi}{a} for some integer a. In most cases, this is not possible. If you want a table of decimal values, you can use a program like Mathematica, for example
http://www.wolframalpha.com/input/?i=Table[N[Sin[x+Degree],+5],+{x,+0,+90}]

Note the use of the function N[..., 5] which gives the results in 5 decimals and compare this to the "exact" table
http://www.wolframalpha.com/input/?i=Table[Sin[x+Degree],+{x,+0,+90}]
 
Do a web search for "trig table" and links to a bunch of nicely formatted tables will come up.
 
However, there is

sin(pi/20) = 1/2 * (-1)^(9/20) * (-1 + (-1)^(1/10))
 
use any computer program. then go y = sin(x)
then say x = 0.

while x<91
y=sin(x)
print y
x+=1
 
I tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks
Back
Top