Calculation \(\sin(30^\circ)\)
returns the result 0.5.
Calculation \(30^\circ+60^\circ\)
returns the result 1.5708, which is the correct result in radians.
You can convert it to degrees using the command Ans►DD ("Decimal Degrees") or
Ans►DMS ("Degrees-Minutes-Seconds").
Additional help:
-
Function nSolve solves the given equation numerically. You must write the equation and specify the name
of the variable. It can be used for equations in one variable and it returns
one of the solutions.
Warning: If a given equation has multiple solutions this function will
not show all the solutions.
I recommend you to use graphical mode to solve equations with multiple solutions.
Calculation \(\textrm{nSolve}(x^2-x-6,x)\)
returns the result −2, which is one of the solutions, but it won't show
the other solution \(x=3\).
-
Function polyRoots finds roots (zeros) of a polynomial. You must write the polynomial and
the name of the variable. It's also possible to write all the coefficients –
in this case you must write them in curly brackets and omit the name of the variable. Function polyRoots will
find all real zeros (for complex zeros use cPolyRoots). Examples:
Calculation \(\textrm{polyRoots}(x^2-x-6,x)\)
returns the result \(\{-2,3\}\).
Calculation \(\textrm{polyRoots}(\{1,3,3,1\})\)
returns the result \(\{-1,-1,-1\}\).
Calculation \(\textrm{cPolyRoots}(x^2+1,x)\)
returns complex roots \(\{-i,i\}\).
-
Function linSolve finds solution of a system of simultaneous linear equations. You can
use different notations. In all variants you must write the equations and the names of variables.
Examples of notation:
\(\textrm{linSolve}(x+y=3~\textrm{and}~x-y=1,x,y)\)
\(\textrm{linSolve}(x+y=3~\textrm{and}~x-y=1,\{x,y\})\)
\(\textrm{linSolve}(\{x+y=3,~x-y=1\},\{x,y\})\)
\(\textrm{linSolve}\left(\left\{
\begin{array}{c}x+y=3\\x-y=1
\end{array}\right.,\{x,y\}\right)\)
The last notation is obtained using the
TEMPLATES button. In all cases calculator returns the result \(\{2,1\}\),
meaning that \(x=2,~y=1\).