Message Boards Message Boards

0
|
5843 Views
|
2 Replies
|
2 Total Likes
View groups...
Share
Share this post:

Work on symbolic complex numbers - z Conjugate[z]=(Abs[z])^2 ?

Posted 7 years ago

Hello everyone. Is it possible to get z Conjugate[z]=(Abs[z])^2 without defining z=a+I b? To do this I need to define z as a symbolic complex number, but this procedure is unclear for me.

Thank you in advance.

POSTED BY: Gennaro Arguzzi
2 Replies

Use ComplexExpand:

ComplexExpand[z Conjugate[z], z, TargetFunctions -> {Abs}]

(* Abs[z]^2 *)
POSTED BY: Carl Woll

You can do it with replacement rules:

a*b*Conjugate[a] /. z_*Conjugate[z_] :> Abs[z]^2
a*b*Conjugate[a] /. Conjugate[z_] :> Abs[z]^2/z
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract