Complex number
A complex number consists of two parts; one is the real part and other imaginary part . The real part is marked on x-axis and the imaginary part on the y-axis on the complex plane. A complex number z= a + bi a - Real part b - imaginary part Complex Conjugate A complex numbers can be converted into complex conjugate by simply multiplying (-1) with imaginary parts . It causes the complex point on first quadrant moves to forth quadrant and vice versa. Similarly,the complex point on second quadrant moves to third quadrant and vice versa. Complex z= a +bi conjugate = a + (-1)bi = a - bi Complex - Absolute An absolute value of a complex number is found by the distance between origin and complex number on the complex plane. A complex number = a + bi Absolute value = sqrt ( a^2 + b^2 ) The Java programming code - Complex number The fol...