# Nakafa Framework: LLM
URL: /en/subject/high-school/11/mathematics/complex-number/inverse-complex-numbers
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/complex-number/inverse-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: "Inverse of Complex Numbers",
  description: "Calculate complex number inverses using conjugate and modulus formulas. Master z⁻¹ = z̄/|z|² for division and reciprocal operations with examples.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "05/01/2025",
  subject: "Complex Number",
};
## What is the Inverse of a Complex Number?
Every **non-zero** complex number  has a "reciprocal" friend called the **multiplicative inverse** (or just inverse), which we write as  or .
The defining characteristic of the multiplicative inverse is that if we multiply the complex number  by its inverse , the result is **1** (the multiplicative identity element).
## Finding the Inverse Formula
We already know from the material on [properties of complex number multiplication](/subject/high-school/11/mathematics/complex-number/properties-multiplication-complex-numbers#multiplicative-inverse) that for , its inverse is:
This formula can also be written as an ordered pair:
Remember also the other often useful form, using the conjugate () and the modulus squared ():
## Example Inverse Calculation
Let the complex number be . Find its inverse!
**Solution:**
Here,  and .
Using the first formula:
  
  
  
  
Using the conjugate and modulus formula:
  
  
  
The result is the same, namely:
  
  
        Visualization of  and{" "}
        
      >
    }
    description={
      <>
        Visualization of  and its inverse{" "}
        . Notice their
        positions relative to the origin.
      >
    }
    cameraPosition={[0, 0, 8]}
    showZAxis={false}
    data={[
      {
        points: [
          { x: 0, y: 0, z: 0 },
          { x: 1, y: -1, z: 0 },
        ],
        color: getColor("SKY"),
        labels: [{ text: "z = 1-i", at: 1, offset: [0.5, -0.3, 0] }],
        cone: { position: "end" },
      },
      {
        points: [
          { x: 0, y: 0, z: 0 },
          { x: 0.5, y: 0.5, z: 0 },
        ],
        color: getColor("LIME"),
        labels: [
          {
            text: "z^{-1} = 1/2 + i/2",
            at: 1,
            offset: [1, 0.5, 0],
          },
        ],
        cone: { position: "end" },
      },
    ]}
  />
## Exercise
Given the complex numbers  and . Find the inverse of .
### Answer Key
Step 1: Find .
Step 2: Find the inverse of .
Here  and .
We use the formula .
  
  
  
So, the inverse of  is .