# X Squared (x²) - Meaning, Graph, and Properties

TL;DR

x squared — written x² — means x multiplied by itself. If x=3, then x²=9. This article covers what x² means, what its graph looks like (a parabola), the difference between x² and 2x, the key properties of squaring, and a quick-reference power table for the small values you will use most.

## What is X Squared?

**x squared** is the expression x × x — the product of x with itself. The notation is x².

x² = x ⋅ x

In the expression x², the x is the **base** and the 2 is the **exponent**. The exponent tells you how many copies of the base to multiply together.

If x=5, then x² = 5 ⋅ 5 = 25. If x=−4, then x² = (−4)(−4) = 16. A negative times a negative is positive — squaring always lands in non-negative territory.

The word "squared" comes from geometry. The area of a square with side x is x ⋅ x. So x² literally measures the area of a square with side x — which is why we say "squared" and not "doubled."

## Is X Squared the Same as 2x?

No. They look similar on the page; they are entirely different operations.

|  | What it means | Value at x=3 |
| --- | --- | --- |
| x² | x multiplied by itself: x ⋅ x | 3 ⋅ 3 = 9 |
| 2x | x added to itself: x + x | 3 + 3 = 6 |

They only agree when x=0 or x=2. Everywhere else, x² grows much faster than 2x.

## A Quick-Reference Power Table

The small-integer values of x² are worth memorizing. They show up constantly in factoring, the quadratic formula, and Pythagorean triples.

| x | x² | x | x² |
| --- | --- | --- | --- |
| 1 | 1 | 11 | 121 |
| 2 | 4 | 12 | 144 |
| 3 | 9 | 13 | 169 |
| 4 | 16 | 14 | 196 |
| 5 | 25 | 15 | 225 |
| 6 | 36 | 16 | 256 |
| 7 | 49 | 17 | 289 |
| 8 | 64 | 18 | 324 |
| 9 | 81 | 19 | 361 |
| 10 | 100 | 20 | 400 |

A few patterns worth noticing:

- The last digit of x² cycles through 0, 1, 4, 9, 6, 5 as x goes from 0 to 9.
- x² is always non-negative, regardless of the sign of x.
- Consecutive squares differ by consecutive odd numbers: 1, 3, 5, 7, 9.

## The Graph of y = x²

Plotting y = x² produces a **parabola** — a smooth, symmetric U-shaped curve.

Key features of the graph:

- **Vertex.** The lowest point of the curve sits at the origin (0,0).
- **Axis of symmetry.** The y-axis. The curve at x=2 has the same height as the curve at x=−2.
- **Domain.** All real numbers — x can be any real value.
- **Range.** y ≥ 0 — the curve never dips below the x-axis.
- **Behaviour at infinity.** As |x| grows, y grows much faster — quadratic growth dominates linear growth.

A handful of plotted points settles the shape:

| x | -3 | -2 | -1 | 0 | 1 | 2 | 3 |
| --- | --- | --- | --- | --- | --- | --- | --- |
| y = x² | 9 | 4 | 1 | 0 | 1 | 4 | 9 |

The graph is the visual that gives meaning to phrases like "parabolic mirror," "projectile path," and "minimum point of a quadratic."

## Properties of X Squared

Five properties worth keeping in working memory:

- **Non-negativity.** x² ≥ 0 for every real x. The square of any real number is zero or positive.
- **Zero iff base is zero.** x² = 0 only when x = 0.
- **Symmetry.** (−x)² = x². Squaring removes the sign.
- **Product rule.** (xy)² = x² ⋅ y². Squaring distributes over multiplication.
- **Quotient rule.** (x/y)² = (x²)/(y²) when y ≠ 0.

Two identities that come from squaring sums and differences:

- (x+y)² = x² + 2xy + y²
- (x−y)² = x² − 2xy + y²
- x² − y² = (x+y)(x−y) (difference of squares)

## How to Compute x² — Three Worked Examples

### Quick example

**Quick.** Find 7².

7² = 7 ⋅ 7 = 49.

### Watch how this goes wrong

**Standard.** Expand (x+5)².

Wrong path. A student fresh from "multiplying by 2" reaches for:

(x+5)² = x² + 25 (That is wrong).

Correct path.

(x+5)² = (x+5)(x+5) = x² + 5x + 5x + 25 = x² + 10x + 25.

### Stretch example

**Stretch.** Expand (2x−3)².

(2x−3)² = (2x)² - 2(2x)(3) + 3² = 4x² - 12x + 9.

## Where X Squared Turns up in the Real World

The squared term is the workhorse of applied algebra. A few places it earns its keep:

- **Area calculations.** The area of any square or circle scales as the square of a length.
- **Projectile motion.** A ball's height under gravity follows h(t) = −1/2gt² + v₀t + h₀ — the t² term comes from the constant downward acceleration.
- **Energy.** Kinetic energy is E = 1/2mv².
- **Light intensity — inverse square law.** Light from a point source falls off as 1/r².
- **Pythagorean theorem.** a² + b² = c².

## Where Things go Sideways

Three errors account for most of the marks lost when working with x².

### Mistake 1: Treating x² as 2x.

Don't read x² as "x times 2". For example: 5² = 5 ⋅ 2 = 10 is wrong.

### Mistake 2: Dropping the cross-term when squaring a sum.

Don’t confuse (x+3)² = x² + 9 with (x+3)² = x² + 6x + 9.

### Mistake 3: Forgetting that (−x)² = x².

For instance, (−4)² = −16 is incorrect. It should be (−4)² = 16.

## Conclusion

- x² is x multiplied by itself — never the same as 2x.
- The graph of y = x² is a parabola with the vertex at the origin.
- Squaring is non-negative and obeys the sum-square identity.
- The squared term governs area, kinetic energy, and the Pythagorean relationship.
