answersLogoWhite

0

A complex number comes in two parts: a real part and an imaginary part. If the value of the real part is a and the value of the imaginary part is b, the number is written as a + bi.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

Do the complex numbers for a group under binary operation ' plus '?

Yes, the complex numbers, as well as the real numbers which are a subset of the complex numbers, form groups under addition.


Is a complex number a number that can be written in the form a plus bi where a and b are real numbers?

Yes, a+bi is standard form for a complex number. The numbers (a) and (b) are both real and i is √(-1)


What is a number that can be written in the form a plus bi where a and b are real numbers?

A number of the form (a + bi) is a complex number.


How do you write 900000 plus 80000 plus 500 plus 7 in standard form?

To write the expression 900,000 plus 80,000 plus 500 plus 7 in standard form, first, add the numbers together: 900,000 + 80,000 + 500 + 7 equals 980,507. In standard form, this can be expressed as (9.80507 \times 10^5).


How do you write 80 000 000 plus 4 plus 100 plus 8 in standed form?

To write the expression "80,000,000 plus 4 plus 100 plus 8" in standard form, you first add the numbers together. This gives you 80,000,000 + 4 + 100 + 8 = 80,000,112. In standard form, this is expressed as 8.0110112 × 10^7.


A complex number is a number of the form a plus bi where?

"a + bi" is a common way to write a complex number. Here, "a" and "b" are real numbers.Another common way to write a complex number is in polar coordinates - basically specifying the distance from zero, and an angle.


How can you write each number in stardard form example 300000 plus 70000 plus 1000 plus 500 plus 10?

Standard form is the sum of all the numbers in the expanded form. Using the example, the standard form for the expansion of that number would be 371,510.


How do you write in standard form 700000000 plus 40000 plus 500 plus 60 plus 6?

The answer is 700,040,566. That other form is not much good to express numbers with, its soul purpose being to show place value.


Are all rational numbers plus all irrational numbers complex numbers?

no its real numbers


What complex number is a number of the form a plus bi where?

"a + bi" is a common way to write a complex number. Here, "a" and "b" are real numbers.Another common way to write a complex number is in polar coordinates - basically specifying the distance from zero, and an angle.


How do you write 200000 plus 10000 plus 9000 plus 53 in standered form?

To write 200,000 plus 10,000 plus 9,000 plus 53 in standard form, you simply add the numbers together. 200,000 + 10,000 + 9,000 + 53 equals 219,053. Therefore, the standard form of the sum is 219,053.


How do write a program in c plus plus for addition and subtraction of two complex numbers?

#include<iostream>#include<complex> int main () { using namespace std; complex a {1, 1}; complex b {42, 2}; cout a << " + " << b << " = " << a + b << endl; cout a << " - " << b << " = " << a - b << endl; }