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+5⁢I&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.
conjugate⁡3+5⁢I
3−5⁢I
conjugate⁡3+5⁢I⁢z
3−5⁢I⁢z&conjugate0;
conjugate⁡3−I
3+I
conjugate⁡5⁢I
−5⁢I
conjugate⁡x2−y
x2−y&conjugate0;
conjugate⁡sqrt⁡−1
−I
conjugate⁡sin⁡exp⁡1
sin⁡ⅇ
conjugate⁡exp⁡3⁢I
ⅇ−3⁢I
conjugate⁡exp⁡1−I
ⅇ1+I
conjugate⁡ln⁡−1
−I⁢π
conjugate⁡polar⁡3,π7
polar⁡3,−π7
The conjugate command was updated in Maple 2016; see Advanced Math.
See Also
assume
combine
evalc
expand
initialfunctions
Re
Download Help Document