Rectangular Coordinate System
In this article, we look at how to draw the x-y coordinate system, identify the quadrants of the coordinate system, plot points in the x-y coordinate system.
Douglas Tawiah Dwumor

[Sassy_Social_Share title="Sharing is Caring"]
- Learn to create a coordinate plane
- Learn to plot an ordered pair in the coordinate plane.
- Learn to find the quadrant in which an ordered pair lies.
RECOMMENDED ARTICLES
No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
[toc]
Cartesian Coordinate System
The Cartesian Coordinate System is another name for a rectangular coordinate plane. This plane lets us plot ordered pairs and graph linear equations with two variables. It may also be called the coordinate plane, the coordinate system, or the Cartesian coordinate plane. In this course, we will usually call it the coordinate plane.
To draw the coordinate plane, we set up two number lines. The x-axis is the horizontal line, which shows x-values. The y-axis is the vertical line, which shows y-values. Let’s look at the coordinate plane:
% Draw the x and y axes
\draw[->] (-6,0) — (6,0) node[right] {$x$};
\draw[->] (0,-6) — (0,6) node[above] {$y$};
% Draw the grid
\draw[help lines] (-6,-6) grid (6,6);
% Label the x axis
\foreach \x in {-6,-5,…,-1,1,2,…,6}
\draw (\x,0.1) — (\x,-0.1) node[below] {\x};
% Label the y axis
\foreach \y in {-6,-5,…,-1,1,2,…,6}
\draw (0.1,\y) — (-0.1,\y) node[left] {\y};
% Label the origin
\node[below left] at (0,0) {0};
\end{tikzpicture}
The point where the x-axis and y-axis meet is called the origin. At the origin, both the x-value and y-value are 0, written as (0,0).
% Draw the x and y axes
\draw[->] (-6,0) — (6,0) node[right] {$x$};
\draw[->] (0,-6) — (0,6) node[above] {$y$};
% Draw the grid
\draw[help lines] (-6,-6) grid (6,6);
% Label the x axis
\foreach \x in {-6,-5,…,-1,1,2,…,6}
\draw (\x,0.1) — (\x,-0.1) node[below] {\x};
% Label the y axis
\foreach \y in {-6,-5,…,-1,1,2,…,6}
\draw (0.1,\y) — (-0.1,\y) node[left] {\y};
% Label the origin
\node[below left] at (0,0) {0};
% Draw an oblique arrow pointing to the origin
\draw[->] (-3,-4) — (0,0);
\node[below] at (-3,-4) {origin};
\node[below] at (-3,-4.3) {(0,0)};
\end{tikzpicture}
On the horizontal number line (x-axis), numbers increase to the right and decrease to the left. On the vertical number line (y-axis), numbers increase upwards and decrease downwards.
The coordinate plane is divided into four quadrants labeled with Roman numerals: I, II, III, and IV. Quadrant I is in the upper right, and the others follow counterclockwise.
Points on the x-axis or y-axis do not belong to any quadrant.
Quadrant I: (+, +)
Quadrant II: (-, +)
Quadrant III: (-, -)
Quadrant IV: (+, -)
\begin{tikzpicture}
% Draw grid lines
\draw[help lines, color=gray!30] (-5,-4) grid (5,4);
% Draw the x-axis
\draw[->, thick, blue] (-5,0) -- (5,0) node[below] {$x$};
% Draw the y-axis
\draw[->, thick, red] (0,-4) -- (0,4) node[left] {$y$};
% Add labels and ticks
\foreach \x in {-4,-3,-2,-1,1,2,3,4}
\draw (\x,0) -- (\x,-0.1) node[below] {$\x$};
\foreach \y in {-3,-2,-1,1,2,3}
\draw (0,\y) -- (-0.1,\y) node[left] {$\y$};
% Add origin label
\node[below left] at (0,0) {O};
% Add labels for quadrants
\node[above right, blue] at (2,2) {Quadrant I};
\node[above left, red] at (-2,2) {Quadrant II};
\node[below left, blue] at (-2,-2) {Quadrant III};
\node[below right, red] at (2,-2) {Quadrant IV};
% Plot a point in each quadrant with labels
\fill[green] (1,1) circle (2pt) node[above right] {$(1,1)$};
\fill[orange] (-3,1) circle (2pt) node[above left] {$(-3,1)$};
\fill[purple] (-4,-1) circle (2pt) node[below left] {$(-4,-0.5)$};
\fill[brown] (3,-1) circle (2pt) node[below right] {$(3,-1)$};
\end{tikzpicture}
How to plot a point on Cartesian Plane
We often call an ordered pair a “point.” To plot a point (an ordered pair), we start at the origin (0,0).
- Here’s how to do it:
Move right or left on the x-axis for the x-value. - Move up or down on the y-axis for the y-value.
For example, to plot the point (1,3 ):
- Move 1 unit to the right from the origin on the x-axis.
- Then move 3 units up from the x-axis.
At this spot, mark a filled-in circle to represent the point (1, 3).
\begin{tikzpicture}
% Draw grid lines
\draw[help lines, color=gray!30] (-5,-4) grid (5,4);
% Draw the x-axis
\draw[->, thick, blue] (-5,0) -- (5,0) node[below] {$x$};
% Draw the y-axis
\draw[->, thick, red] (0,-4) -- (0,4) node[left] {$y$};
% Add labels and ticks
\foreach \x in {-4,-3,-2,-1,1,2,3,4}
\draw (\x,0) -- (\x,-0.1) node[below] {$\x$};
\foreach \y in {-3,-2,-1,1,2,3}
\draw (0,\y) -- (-0.1,\y) node[left] {$\y$};
% Add origin label
\node[below left] at (0,0) {O};
% Add labels for quadrants
%\node[above right, blue] at (2,2) {Quadrant I};
%\node[above left, red] at (-2,2) {Quadrant II};
%\node[below left, blue] at (-2,-2) {Quadrant III};
%\node[below right, red] at (2,-2) {Quadrant IV};
% Plot a point in each quadrant with labels
\fill[green] (1,3) circle (2pt) node[above right] {$(1,3)$};
%\fill[orange] (-3,1) circle (2pt) node[above left] {$(-3,1)$};
%\fill[purple] (-4,-1) circle (2pt) node[below left] {$(-4,-0.5)$};
%\fill[brown] (3,-1) circle (2pt) node[below right] {$(3,-1)$};
\end{tikzpicture}
Review Exercises
Example 1: Plot the point $(-3, 2)$ and determine its quadrant.
\begin{tikzpicture}
% Draw grid lines
\draw[help lines, color=gray!30] (-5,-4) grid (5,4);
% Draw the x-axis
\draw[->, thick, blue] (-5,0) -- (5,0) node[below] {$x$};
% Draw the y-axis
\draw[->, thick, red] (0,-4) -- (0,4) node[left] {$y$};
% Add labels and ticks
\foreach \x in {-4,-3,-2,-1,1,2,3,4}
\draw (\x,0) -- (\x,-0.1) node[below] {$\x$};
\foreach \y in {-3,-2,-1,1,2,3}
\draw (0,\y) -- (-0.1,\y) node[left] {$\y$};
% Add origin label
\node[below left] at (0,0) {O};
% Add labels for quadrants
%\node[above right, blue] at (2,2) {Quadrant I};
%\node[above left, red] at (-2,2) {Quadrant II};
%\node[below left, blue] at (-2,-2) {Quadrant III};
%\node[below right, red] at (2,-2) {Quadrant IV};
% Plot a point in each quadrant with labels
%\fill[green] (1,3) circle (2pt) node[above right] {$(1,3)$};
\fill[orange] (-3,2) circle (2pt) node[above left] {$(-3,2)$};
%\fill[purple] (-4,-1) circle (2pt) node[below left] {$(-4,-0.5)$};
%\fill[brown] (3,-1) circle (2pt) node[below right] {$(3,-1)$};
\end{tikzpicture}
You May Also Like…
No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
0 Comments