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.
3+5⁢I&conjugate0;
3−5⁢I
3+5⁢I⁢z&conjugate0;
3−5⁢I⁢z&conjugate0;
3−I&conjugate0;
3+I
5⁢I&conjugate0;
−5⁢I
x2−y&conjugate0;
−1&conjugate0;
−I
sin⁡ⅇ&conjugate0;
sin⁡ⅇ
ⅇ3⁢I&conjugate0;
1ⅇ3⁢I
ⅇ1−I&conjugate0;
ⅇ1+I
ln⁡−1&conjugate0;
−I⁢π
polar⁡3,Pi7&conjugate0;
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