Degrees
ConvertToDegreeForm
convert a trig function from radians to degrees
ConvertToRadForm
convert a trig function from degrees to radians
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
ConvertToDegreeForm( expr, opts )
ConvertToRadForm( expr, opts )
expr
-
any expression
verbatim = true or false
inertverbatim = true or false
When true, swap trig functions without any conversion factors. The default is false.
onlyconst = true or false
When true, swap trig functions converting only additive constants. The default is false.
The ConvertToDegreeForm(expr) command converts all occurences of trigonometric and inverse trigonometric functions within expr from their radian form to their corresponding degrees form. That is, sind(x) is converted to sin(180/Pi*x), and arcsin(x) is converted to Pi/180*arcsin(x).
The ConvertToRadForm(expr) command does the reverse of ConvertToDegreeForm, converting all occurences of trigonometric and inverse trigonometric functions within expr from their degree form to their corresponding radians form. That is, sind(x) is converted to sin(Pi/180*x), and arcsind(x) is converted to 180/Pi*arcsin(x).
This function is part of the Degrees package, so it can be used in the short form ConvertToDegreeForm(..) only after executing the command with(Degrees). However, it can always be accessed through the long form of the command by using Degrees:-ConvertToDegreeForm(..).
with⁡Degrees:
a≔ConvertToDegreeForm⁡sin⁡x+arccos⁡x+3
a≔sind⁡180⁢xπ+π⁢arccosd⁡x180+3
ConvertToRadForm⁡a
sin⁡x+arccos⁡x+3
The Degrees[ConvertToDegreeForm] and Degrees[ConvertToRadForm] commands were introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
Degrees[ConvertToDegreeForm]
Degrees[ConvertToRadForm]
Degrees[Simplify]
simplify/trig
trig
Download Help Document