Trigonometric | |
Functions | |
TrigonometricSubs | Substitute trigonometric variables with numerical values |
TrigonometricAlgebraic | Convert trigonometric and radical expressions to algebraic ones |
TrigonometricAlgebraicCosSin | Convert trigonometric and radical expressions to algebraic ones |
TrigonometricVariables | Updates trigonometric variables to algebraic ones. |
TrigonometricConstants | Returns the algebraic variables of trigonometric constants. |
AlgebraicVariables | Convert algebraic variables to trigonometric ones. |
AlgebraicTrigonometric | Convert algebraic systems back to trigonometric ones. |
TrigonometricTanHalf | Parametrize trigonometric and radical expressions with tangent expression |
TrigonometricGcd | Extract common factors of trigonometric expressions |
TrigonometricSubs := proc ( spec ::seq(name=algebraic), sys ::{algebraic, algebraic<algebraic, list({algebraic,algebraic=algebraic, algebraic<algebraic})}, precision ::integer := 4, { noradical ::truefalse := false } )
Substitute trigonometric variables with numerical values
spec | sequence of equalities var=value where var is a name and value a numerical value. |
formula | equation, inequation, polynomial or list of those, with trigonometric and algebraic expressions. |
precision (optional) | integer: the number of digits that must be kept when modifying the values in spec. |
The input formula where the name in spec have been replaced by the corresponding values; the algebraic relations satissfied by cos and sin are still valid with the chosen numerical values.
Exemple begin(code)
TrigonometricSubs (a=3, cos(a)^2+sin(a)^2);
1 end(code)
TrigonometricAlgebraic := proc( sys ::list(algebraic), { norelation ::truefalse := false, cossin ::{set,list}(name) := indets(sys,name), tanhalf ::{set,list}(name) := [], const ::truefalse := false } )
Convert trigonometric and radical expressions to algebraic ones
sys | list of polynomials: the polynomial to convert |
norelation = b (optional) | b is a boolean: if false then trigonometric relations are added to the output system; default value: false |
cossin = l (optional) | l is a list of name: the variables to change into cosine and sine of the angle; default value: list of all the variables |
tanhalf = l (optional) | l is a list of name: the variables to change into tan of half of the angle; default value: [] |
A sequence of 2 elements :
> sys, vars := TrigonometricAlgebraic ( [cos(x)-cos(y),cos(y)-z^3] ); 3 sys, vars := [cosx - cosy, cosy - z ], algvars > vars[y]; cosy
TrigonometricAlgebraicCosSin := proc ( sys ::list(algebraic), { norelation ::truefalse := false, variables ::{set,list}(name) := NULL, const ::truefalse := false } )
Convert trigonometric and radical expressions to algebraic ones
sys | list of polynomials: the polynomial to convert |
norelation = b (optional) | b is a boolean: if false then trigonometric relations are added to the output system; default value: false |
variables = l (optional) | l is a list of name: the variables to change; default value: all the variables |
A sequence of 2 elements :
> sys, vars := TrigonometricAlgebraic ( [cos(x)-cos(y),cos(y)-z^3] ); 3 sys, vars := [cosx - cosy, cosy - z ], algvars > vars[y]; cosy
TrigonometricVariables := proc ( vars ::list(name), algvars ::table )
Updates trigonometric variables to algebraic ones.
vars | list of name: the variables to convert. |
algvars | table returned by the TrigonometricAlgebraic or TrigonometricTanHalf function. |
A list of names: the variables updated with new algebraic variables corresponding to the trigonometric functions.
TrigonometricConstants := proc ( algvars ::table )
Returns the algebraic variables of trigonometric constants.
algvars | table returned by the TrigonometricAlgebraic or TrigonometricTanHalf function. |
A list of names: the algebraic variables corresponding to the trigonometric constants.
AlgebraicVariables := proc ( vars ::list(name), algvars ::table )
Convert algebraic variables to trigonometric ones.
vars | list of name: the variables to convert. |
algvars | table returned by the TrigonometricAlgebraic or TrigonometricTanHalf function. |
A list of names: the original trigonometric variables corresponding to the algebraic variables.
AlgebraicTrigonometric := proc ( algsys ::list(anything), algvars ::table, { nosimplify ::truefalse := false } )
Convert algebraic systems back to trigonometric ones.
algsys | list of polynomials: the polynomial to convert |
algvars | table returned by TrigonometricAlgebraic or TrigonometricTanHalf. |
nosimplify=b (optional) | b is a boolean: if true, the trigonometric expression are not simplified; default value: false. |
A list of algebraic expressions: the system back with trigonometric functions.
> sys,vars:=TrigonometricAlgebraic ( [cos(x)-cos(y),cos(y)-z^3] ); 3 sys, vars := [cosx - cosy, cosy - z ], algvars > AlgebraicTrigonometric (sys,vars); 3 [cos(x) - cos(y), cos(y) - z ]
TrigonometricTanHalf := proc( sys ::list(algebraic), { generic ::truefalse := false, variables ::{list,set}(name) := NULL, const ::truefalse := false } )
Parametrize trigonometric and radical expressions with tangent expression
sys | list of polynomials: the polynomial to convert |
generic = b (optional) | b is a boolean: if true, the angles are supposed different from Pi; default value: false. |
variables = l (optional) | l is a list of name: the variables to change; default value: all the variables |
a sequence of 2 elements:
Substitute trigonometric variables with numerical values
TrigonometricSubs := proc ( spec ::seq(name=algebraic), sys ::{algebraic, algebraic<algebraic, list({algebraic,algebraic=algebraic, algebraic<algebraic})}, precision ::integer := 4, { noradical ::truefalse := false } )
Convert trigonometric and radical expressions to algebraic ones
TrigonometricAlgebraic := proc( sys ::list(algebraic), { norelation ::truefalse := false, cossin ::{set,list}(name) := indets(sys,name), tanhalf ::{set,list}(name) := [], const ::truefalse := false } )
Convert trigonometric and radical expressions to algebraic ones
TrigonometricAlgebraicCosSin := proc ( sys ::list(algebraic), { norelation ::truefalse := false, variables ::{set,list}(name) := NULL, const ::truefalse := false } )
Updates trigonometric variables to algebraic ones.
TrigonometricVariables := proc ( vars ::list(name), algvars ::table )
Returns the algebraic variables of trigonometric constants.
TrigonometricConstants := proc ( algvars ::table )
Convert algebraic variables to trigonometric ones.
AlgebraicVariables := proc ( vars ::list(name), algvars ::table )
Convert algebraic systems back to trigonometric ones.
AlgebraicTrigonometric := proc ( algsys ::list(anything), algvars ::table, { nosimplify ::truefalse := false } )
Parametrize trigonometric and radical expressions with tangent expression
TrigonometricTanHalf := proc( sys ::list(algebraic), { generic ::truefalse := false, variables ::{list,set}(name) := NULL, const ::truefalse := false } )
Extract common factors of trigonometric expressions
TrigonometricGcd := proc ( sys ::list(algebraic), { squarefree ::truefalse := true, ordering ::list(name) := NULL } )