# Nakafa Framework: LLM URL: https://nakafa.com/en/subject/high-school/11/mathematics/complex-number/modulus-argument-complex-numbers Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/complex-number/modulus-argument-complex-numbers/en.mdx Output docs content for large language models. --- import { LineEquation } from "@repo/design-system/components/contents/line-equation"; import { getColor } from "@repo/design-system/lib/color"; export const metadata = { title: "Modulus and Argument of Complex Numbers", description: "Calculate modulus |z| = √(x²+y²) and argument θ using quadrant rules. Master distance and angle measurements for polar form conversions.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "05/01/2025", subject: "Complex Number", }; ## What are Modulus and Argument? A complex number can be represented as a point on the complex plane (similar to the Cartesian plane). Besides being a point, we can also view it as a **vector** starting from the origin to the point . This vector has a **length** and a **direction**. This length and direction are what we call the **Modulus** and **Argument**. ## Modulus of a Complex Number The **Modulus** of a complex number , written as , is the **distance** from the origin to the point on the complex plane. This is the same as the **length of the vector** representing . The modulus is the length of the vector from the origin to the point . We can see it as the hypotenuse of a right-angled triangle. } cameraPosition={[0, 0, 12]} showZAxis={false} data={[ { points: [ { x: 0, y: 0, z: 0 }, { x: 3, y: 4, z: 0 }, ], color: getColor("SKY"), labels: [ { text: "z = 3+4i", at: 1, offset: [0.5, 0.5, 0] }, { text: "|z|", at: 1, offset: [-2, -1.5, 0], color: getColor("AMBER"), }, ], cone: { position: "end" }, }, // Helper lines for x and y { points: [ { x: 0, y: 0, z: 0 }, { x: 3, y: 0, z: 0 }, ], color: getColor("ROSE"), labels: [{ text: "x = 3", at: 1, offset: [-1.5, -0.5, 0] }], }, { points: [ { x: 3, y: 0, z: 0 }, { x: 3, y: 4, z: 0 }, ], color: getColor("EMERALD"), labels: [{ text: "y = 4", at: 1, offset: [1.5, -1.5, 0] }], }, ]} /> To calculate the modulus, we can use the Pythagorean Theorem on the right-angled triangle formed by the real part (), the imaginary part (), and the modulus () as the hypotenuse. **Definition of Modulus:** The modulus of the complex number is: The modulus is always **non-negative** (never negative) because it represents a distance. ### Calculating the Modulus 1. **Find the modulus of **, with 2. **Find the modulus of **, with 3. **Find the modulus of **, with (The modulus of a real number is its absolute value). 4. **Find the modulus of **, with ## Argument of a Complex Number The **Argument** of a non-zero complex number , written as or , is the **angle** formed by the vector with the **positive real axis** on the complex plane. This angle is usually measured in radians or degrees. From basic trigonometry on the same right-angled triangle as in the modulus visualization, we know the relationships:
To find , we can use the arctangent function (or ): Calculators usually give the value in the range or . We need to **consider the quadrant** where the point lies to determine the correct argument. - **Quadrant ** (): - **Quadrant ** (): - **Quadrant ** (): - **Quadrant ** (): or simply if a negative angle is desired Often, we are interested in the **Principal Argument** (written ), which is the argument value in the interval or . ### Calculating the Argument 1. **Find the argument of ** The point is in Quadrant .
2. **Find the argument of ** The point is in Quadrant .
(Because it's in Quadrant , we use ) 3. **Find the argument of ** The point is in Quadrant .
(Because it's in Quadrant , we use . Principal Argument: or ). 4. **Find the argument of ** The point is in Quadrant .
(Because it's in Quadrant , we use . Principal Argument: or ). ## Exercise Find the modulus and argument (in degrees) of the following complex numbers: 1. 2. 3. ### Answer Key 1. **For :** (Quadrant ) Modulus: Argument: 2. **For :** . (Negative real axis) Modulus: Argument: The point is on the negative real axis. 3. **For :** . (Negative imaginary axis) Modulus: Argument: The point is on the negative imaginary axis. or (Principal Argument).