A number of the form a+ib, where i squared =-1 , and a and b are real numbers, i
ID: 3637376 • Letter: A
Question
A number of the form a+ib, where i squared =-1 , and a and b are real numbers, is called a complex number. We call a the real part and b the imaginary part of a +ib. complex numbers can be also represented as ordered pairs(a,b) The additional, multiplication, conjugates and division of complex numbers is defined by the following rules:1 (a+ib)+(c+id) = (a+c)+i(b+d)
2 (a+ib) *(c+id) = (ac-bd) + i (ad+bc)
3 a + ib = a –ib
4 (a+ib)/(c+id) = (ac+bd)/(c squared + d squared) +i (bc-ad)/(c squared + d squared)
C++ has no built in data type that allows u to manipulate complex numbers. Write a c++ program without creating a user defined type complex that can be used to process complex numbers. Break down the problem into small subtasks, and implement each subtask as separate function,