How Do You Calculate Modulus and Perform Operations on Complex Numbers?

  • Thread starter Thread starter alpha01
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
alpha01
Messages
77
Reaction score
0
we have z = 5+2i

how do i find the following:

|z|
z-1


i can do the basic operations (x, /, +, -) with complex numbers but i have no idea where to even start with these 2.
 
Physics news on Phys.org
For a complex number z=a+ib, the conjugate is defined as [itex]\bar z=a-ib[/itex]. |z| is the absolute value of z, the distance of z to the origin in the complex plane, and can be calculated as [itex]|z|^2=z\bar z=a^2+b^2[/itex]. [itex]z^{-1}[/itex] is the inverse of z, defined by the property that [itex]zz^{-1}=1[/itex], so [itex]z^{-1}=\frac{a-ib}{a^2+b^2}[/itex]
 
set z=a+bi, then |z|=sqrt(a*a+b*b)...then you can do the first one.
for the second one, it is 1/z.
1/z=1/(5+2i)=(5-2i)/29