conjugate
return the complex conjugate
Calling Sequence
Parameters
Description
Thread Safety
Examples
Compatibility
conjugate(x)
x&conjugate0;
x
-
expression
The conjugate(x) function computes the complex conjugate of x.
You can enter the command conjugate using either the 1-D or 2-D calling sequence. For example, conjugate(3 + 5*I) is equivalent to 3+5I&conjugate0;.
If x includes a function f, then conjugate(x) executes the procedure `conjugate/f` (if it exists) to compute the conjugate of the corresponding part of the expression.
By this method, the functionality of this command can be extended. For example, recording that a function f is conjugate symmetric can be accomplished by defining the following function.
`conjugate/f` := proc(x) f(conjugate(x)) end proc;
To specify that unknown variables should be assumed to represent real values, use the assume or the evalc command.
The conjugate command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
conjugate3+5I
3−5I
conjugate3+5Iz
3−5Iz&conjugate0;
conjugate3−I
3+I
conjugate5I
−5I
conjugatex2−y
x2−y&conjugate0;
conjugatesqrt−1
−I
conjugatesinexp1
sinⅇ
conjugateexp3I
ⅇ−3I
conjugateexp1−I
ⅇ1+I
conjugateln−1
−Iπ
conjugatepolar3,π7
polar3,−π7
The conjugate command was updated in Maple 2016; see Advanced Math.
See Also
assume
combine
evalc
expand
initialfunctions
Re
Download Help Document