Why Break a Vector Into i and j at All?
Two friends push a stalled car - one from behind, one from the side. To predict where it actually rolls, you cannot just add the two push strengths, because they point different ways. The trick that makes the whole thing tractable is to split every push into how much it acts left-right and how much front-back, then handle each direction on its own. That split is exactly the i-j form, and it turns awkward geometry into plain arithmetic.
What Is the i-j Form of a Vector?
The i-j form writes a vector as a sum of scaled unit vectors: $\vec{v} = a,\hat{i} + b,\hat{j}$, where $\hat{i}$ is the unit vector pointing along the positive x-axis, $\hat{j}$ points along the positive y-axis, and $a$ and $b$ are the scalar components. In three dimensions you add a third term, $c,\hat{k}$, for the z-axis.
So $\vec{v} = 3,\hat{i} + 2,\hat{j}$ means "go 3 units right, then 2 units up." It is the same information as the column form $(3, 2)$, only written so the direction of each part is spelled out. If the underlying idea of splitting a vector into pieces is still fuzzy, the page on components of a vector sets it up, and the different ways to write the same arrow are collected under representation of a vector.
The reason this notation earns its place: every operation on vectors becomes component-wise. You never have to reason about angles mid-calculation - you match $\hat{i}$ with $\hat{i}$ and $\hat{j}$ with $\hat{j}$, and the geometry takes care of itself.
How Do You Add and Subtract Vectors in i-j Form?
This is the most-searched question on the topic, and the rule is short: combine like components. For $\vec{r_1} = x_1,\hat{i} + y_1,\hat{j}$ and $\vec{r_2} = x_2,\hat{i} + y_2,\hat{j}$,
$$\vec{r_1} + \vec{r_2} = (x_1 + x_2),\hat{i} + (y_1 + y_2),\hat{j}$$
$$\vec{r_1} - \vec{r_2} = (x_1 - x_2),\hat{i} + (y_1 - y_2),\hat{j}$$
The $\hat{i}$-terms never mix with the $\hat{j}$-terms, because right-left displacement and up-down displacement are independent. Adding vectors this way gives the same resultant you would get by drawing them head to tail - the full geometric picture is on addition of vectors.
How Do You Multiply a Vector in i-j Form by a Scalar?
Scaling touches every component equally. For a scalar $k$,
$$k,\vec{v} = k(a,\hat{i} + b,\hat{j}) = (ka),\hat{i} + (kb),\hat{j}$$
Multiplying by $k = 2$ doubles the vector's length while keeping its direction; multiplying by a negative $k$ flips it around. The direction-and-length behaviour has its own dedicated treatment on multiplication of a vector by a scalar. The point for i-j work is only this: distribute the scalar across both terms, and do not leave one component untouched.
How Do You Find the Magnitude of a Vector in i-j Form?
The magnitude (or length) of $\vec{v} = a,\hat{i} + b,\hat{j}$ comes straight from the Pythagorean theorem, because $a$ and $b$ sit at right angles:
$$|\vec{v}| = \sqrt{a^2 + b^2}$$
In 3D, with $\vec{v} = a,\hat{i} + b,\hat{j} + c,\hat{k}$, the length extends the same way:
$$|\vec{v}| = \sqrt{a^2 + b^2 + c^2}$$
Here $a$, $b$, and $c$ are the scalar components along the three axes, and the square root turns those legs into the straight-line distance from tail to head.
Where Is the i-j Form Used in Real Problems?
The notation is the standard language for anything with direction and size.
Resolving forces. Engineers split each force acting on a joint into $\hat{i}$ and $\hat{j}$ parts, sum the columns, and read off the net force - the method behind the two worked force problems below.
Navigation and velocity. A plane's velocity relative to the ground is its air velocity plus the wind velocity, added component by component.
Computer graphics and games. On-screen motion stores position and velocity as i-j (or i-j-k) vectors so the engine can update them with pure addition each frame.
Extending to space. The same rules carry to $\hat{k}$ untouched, which is why the jump from 2D to 3D physics adds no new arithmetic - only one more column.
Examples of Handling Vectors in the i-j Form
Example 1
Add $\vec{a} = 3,\hat{i} - 3,\hat{j}$, $\vec{b} = \hat{i} - 4,\hat{j}$, and $\vec{c} = -2,\hat{i} + 5,\hat{j}$.
Add the $\hat{i}$-parts and the $\hat{j}$-parts separately.
$$\hat{i}: \ 3 + 1 - 2 = 2$$ $$\hat{j}: \ -3 - 4 + 5 = -2$$
Final answer: $\vec{a} + \vec{b} + \vec{c} = 2,\hat{i} - 2,\hat{j}$.
Example 2
Find $\vec{p} - \vec{q}$ for $\vec{p} = 5,\hat{i} + 2,\hat{j}$ and $\vec{q} = 8,\hat{i} - 3,\hat{j}$. Watch the first instinct go wrong.
Wrong attempt. A rushed subtraction keeps the sign of $\vec{q}$'s $\hat{j}$-term as it appears, writing:
$$\hat{j}: \ 2 - (-3) = 2 - 3 = -1 \quad \text{(dropped the double negative)}$$
That drops the double negative. Test the direction: $\vec{p}$ points up, $\vec{q}$ points down, so subtracting a downward vector should push the result further up, not down. A negative $\hat{j}$-result contradicts that.
Correct method. Subtract carefully, honouring both signs:
$$\hat{i}: \ 5 - 8 = -3, \qquad \hat{j}: \ 2 - (-3) = 5$$
Final answer: $\vec{p} - \vec{q} = -3,\hat{i} + 5,\hat{j}$.
Example 3
Scale $\vec{v} = 4,\hat{i} - \hat{j}$ by $k = -\tfrac{1}{2}$.
Distribute the scalar across both terms.
$$-\tfrac{1}{2}(4,\hat{i} - \hat{j}) = -2,\hat{i} + \tfrac{1}{2},\hat{j}$$
Final answer: $-2,\hat{i} + \tfrac{1}{2},\hat{j}$ - half the length, pointing the opposite way.
Example 4
Find the magnitude of $\vec{w} = 6,\hat{i} + 8,\hat{j}$.
$$|\vec{w}| = \sqrt{6^2 + 8^2} = \sqrt{36 + 64} = \sqrt{100} = 10$$
Final answer: $|\vec{w}| = 10$.
Example 5
Two vectors in 3D: $\vec{A} = 2,\hat{i} - 3,\hat{j} + 4,\hat{k}$ and $\vec{B} = -\hat{i} + 5,\hat{j} - 2,\hat{k}$. Find $\vec{A} + \vec{B}$ and its magnitude.
Add each column.
$$\vec{A} + \vec{B} = (2-1),\hat{i} + (-3+5),\hat{j} + (4-2),\hat{k} = \hat{i} + 2,\hat{j} + 2,\hat{k}$$
Then the length:
$$\sqrt{1^2 + 2^2 + 2^2} = \sqrt{9} = 3$$
Final answer: $\hat{i} + 2,\hat{j} + 2,\hat{k}$, magnitude $3$.
Example 6
Two ropes pull a box. Rope 1 exerts $\vec{F_1} = 30,\hat{i} + 40,\hat{j}$ N and rope 2 exerts $\vec{F_2} = -10,\hat{i} + 20,\hat{j}$ N. Find the net force and its magnitude.
Sum the components.
$$\vec{F} = (30 - 10),\hat{i} + (40 + 20),\hat{j} = 20,\hat{i} + 60,\hat{j} \ \text{N}$$
Magnitude:
$$|\vec{F}| = \sqrt{20^2 + 60^2} = \sqrt{400 + 3600} = \sqrt{4000} \approx 63.2 \ \text{N}$$
Final answer: net force $20,\hat{i} + 60,\hat{j}$ N, magnitude $\approx 63.2$ N.
What Are the Most Common Mistakes With the i-j Form?
Mistake 1: Mixing the i and j components
Where it slips in: Adding two vectors quickly and letting an $\hat{i}$-number land in the $\hat{j}$-column.
Don't do this: $(3,\hat{i} + 2,\hat{j}) + (1,\hat{i} + 4,\hat{j}) = 4,\hat{i} + 5,\hat{j}$ by grabbing the nearest numbers.
The correct way: Line the vectors up so $\hat{i}$ sits under $\hat{i}$ and $\hat{j}$ under $\hat{j}$, then add each column. The right answer is $4,\hat{i} + 6,\hat{j}$. The habit that fixes this for good is writing the components in a vertical stack before adding - the mismatch becomes visible instead of hidden.
Mistake 2: Forgetting to scale every component
Where it slips in: Multiplying a vector by a scalar and scaling only the first term.
Don't do this: $3(2,\hat{i} + 5,\hat{j}) = 6,\hat{i} + 5,\hat{j}$.
The correct way: The scalar hits both terms: $6,\hat{i} + 15,\hat{j}$. The first-instinct error here is treating the $\hat{j}$-term as if the scalar had already been "used up" on the $\hat{i}$-term - it has not.
Mistake 3: Adding magnitudes instead of components
Where it slips in: Finding the magnitude of a sum by adding the two individual magnitudes.
Don't do this: $|\vec{a} + \vec{b}| = |\vec{a}| + |\vec{b}|$ in general.
The correct way: Add the vectors first, component by component, then take the magnitude of the result. The two match only when the vectors point the same way - the boundary case that the vector triangle inequality makes precise.
Conclusion
Handling vectors in the i-j form means treating the $\hat{i}$-parts and $\hat{j}$-parts as separate, independent columns.
Add and subtract by combining like components; scale by multiplying every component by the scalar.
Find magnitude with $\sqrt{a^2 + b^2}$ in 2D and $\sqrt{a^2 + b^2 + c^2}$ in 3D.
The most common mistake is mixing the components or scaling only one of them, so stack them vertically before you operate.
To practise the i-j form with a teacher, explore Bhanzu's geometry tutor or, for senior-school vector algebra, a high school math tutor and math tutoring support.
A Practical Next Step
Work through these to lock in the component habit. (1) Add $\vec{a} = 7,\hat{i} - 2,\hat{j}$ and $\vec{b} = -3,\hat{i} + 6,\hat{j}$. (2) Scale $\vec{v} = -4,\hat{i} + 3,\hat{j}$ by $k = 2.5$. (3) Find the magnitude of $\vec{w} = 9,\hat{i} - 12,\hat{j}$. If the subtraction sign-flip trips you up, return to Example 2 above. Want a live Bhanzu trainer to walk through more i-j problems? Book a free demo class.
Read More
Types of vectors — unit, zero, equal, and collinear vectors that the i-j form describes.
Position vector — locating points as i-j-k vectors from the origin.
Angle between two vectors — using components to find the angle separating directions.
Dot product — the component-wise product that measures alignment.
Direction ratio — the 3D orientation triple read from i-j-k components.
Vector addition as net effect — what the summed components actually mean physically.
Was this article helpful?
Your feedback helps us write better content
