--
Cindy Smith Unless the LORD build the house,
c...@dragon.com they labor in vain who build.
c...@5sc.net Unless the LORD guard the city,
c...@romancatholic.org in vain does the guard keep watch.
Me transmitte sursum, -- Psalm 127:1
Caledoni! All your base are belong to us.
A Real Live Catholic You are on the way to destruction.
in Georgia! What you say.
>->> <<-< Go against the flow! You have no chance to survive make your time.
> I just bought Maple 9 the other day and have noticed that it returns
> answers in radians instead of degrees. So, evalf(sin(90)); returns
> the answer 0.89399666 etc. instead of 1. I've search the Learning
> Guide and the Help file on Maple but cannot figure out how to change
> from radians to degrees. If someone knows how, would you please
> enlighten me? Thanks.
If d = measure of an angle in degrees, and r = measure of the same
angle in radians, then d=(180/Pi)*r or r=(Pi/180)*d .
So, for example, sin(90 degrees) = sin((Pi/180)*90) = sin(Pi/2)
--
G. A. Edgar http://www.math.ohio-state.edu/~edgar/
Okay, that works. Basic trig. Is there any way to make degrees the
default instead of radians? That's what I'm trying to figure out.
Thanks again very much.
> --
> G. A. Edgar
http://www.math.ohio-state.edu/~edgar/
--
|>> If d = measure of an angle in degrees, and r = measure of the same
|>> angle in radians, then d=(180/Pi)*r or r=(Pi/180)*d .
|>> So, for example, sin(90 degrees) = sin((Pi/180)*90) = sin(Pi/2)
|>Okay, that works. Basic trig. Is there any way to make degrees the
|>default instead of radians?
Not really. But you can define your own functions, for example
> Sin:= x -> sin(Pi/180*x);
Robert Israel isr...@math.ubc.ca
Department of Mathematics http://www.math.ubc.ca/~israel
University of British Columbia
Vancouver, BC, Canada V6T 1Z2
Conversions are fairly easy:
> convert(3.14159,units,radians, degrees);
179.9998479
Look under Help, units.
--
Julian V. Noble
Professor Emeritus of Physics
j...@lessspamformother.virginia.edu
^^^^^^^^^^^^^^^^^^
http://galileo.phys.virginia.edu/~jvn/
"Science knows only one commandment: contribute to science."
-- Bertolt Brecht, "Galileo".
> SPAWN OF A JEWISH CARPENTER: CINDY SMITH wrote:
>> I just bought Maple 9 the other day and have noticed that it returns
>> answers in radians instead of degrees. So, evalf(sin(90)); returns
>> the answer 0.89399666 etc. instead of 1. I've search the Learning
>> Guide and the Help file on Maple but cannot figure out how to change
>> from radians to degrees. If someone knows how, would you please
>> enlighten me? Thanks.
>> --
>> Cindy Smith Unless the LORD build the house,
>> c...@dragon.com they labor in vain who build.
>> c...@5sc.net Unless the LORD guard the city,
>> c...@romancatholic.org in vain does the guard keep watch.
>> Me transmitte sursum, -- Psalm 127:1
>> Caledoni! All your base are belong to us.
>> A Real Live Catholic You are on the way to destruction.
>> in Georgia! What you say.
>> >->> <<-< Go against the flow! You have no chance to survive make your time.
> Conversions are fairly easy:
>> convert(3.14159,units,radians, degrees);
> 179.9998479
> Look under Help, units.
Thank you very much. I'm just getting used to the package and didn't
know what command to look for in help. convert (Pi/2, units, radians,
degrees); gives "90."