Introduction to Graphs
The Cartesian Plane
What is the Coordinate System? The Cartesian coordinate system (named after mathematician René Descartes) is a method of locating points on a plane using two perpendicular number lines called axes.
The Axes:
- X-axis: The horizontal number line (left to right)
- Y-axis: The vertical number line (up and down)
- Origin: The point where the X-axis and Y-axis intersect, labeled as \(O(0, 0)\)
What are Ordered Pairs? An ordered pair \((x, y)\) represents the coordinates of a point, where:
- \(x\) = the distance from the Y-axis (called the x-coordinate or abscissa)
- \(y\) = the distance from the X-axis (called the y-coordinate or ordinate)
Important Rules:
- The order matters! \((2, 3)\) is different from \((3, 2)\)
- The first number always refers to the X-axis (horizontal position)
- The second number always refers to the Y-axis (vertical position)
How to Plot a Point:
- Start at the origin \((0, 0)\)
- Move horizontally along the X-axis according to \(x\):
- Positive \(x\) → move RIGHT
- Negative \(x\) → move LEFT
- Move vertically according to \(y\):
- Positive \(y\) → move UP
- Negative \(y\) → move DOWN
- x-axis is horizontal, y-axis is vertical, meeting at the origin (0, 0).
- A point is (x, y), with x read first.
- The Cartesian plane has X-axis (horizontal) and Y-axis (vertical)
- Origin is \((0, 0)\) where axes intersect
- Ordered pair \((x, y)\): first is x-coordinate, second is y-coordinate
- Positive x → right; negative x → left
- Positive y → up; negative y → down
- The order of numbers in a pair is extremely important
- ---
Plotting Points
What are the Four Quadrants? The two perpendicular axes divide the plane into four quadrants, numbered counterclockwise starting from the top-right.
| Quadrant | x-sign | y-sign | Example point |
|---|---|---|---|
| Quadrant I (Q1) | + | + | (3, 4) |
| Quadrant II (Q2) | - | + | (-3, 4) |
| Quadrant III (Q3) | - | - | (-3, -4) |
| Quadrant IV (Q4) | + | - | (3, -4) |
Points on Axes:
- On X-axis: \(y = 0\), e.g., \((5, 0)\), \((-2, 0)\)
- On Y-axis: \(x = 0\), e.g., \((0, 3)\), \((0, -4)\)
- Origin: \((0, 0)\) (on both axes)
Distance Interpretation:
- The x-coordinate tells how far a point is from the Y-axis
- The y-coordinate tells how far a point is from the X-axis
- The distance from the origin = \(\sqrt{x^2 + y^2}\) (Pythagorean theorem)
Distance between two points:
Horizontal and Vertical Distances:
- Same y-coordinate → horizontal distance = \(|x_2 - x_1|\)
- Same x-coordinate → vertical distance = \(|y_2 - y_1|\)
- Plot (x, y): x along, then y up/down.
- On the x-axis y = 0; on the y-axis x = 0.
- Quadrant I: (+, +) | Quadrant II: (-, +) | Quadrant III: (-, -) | Quadrant IV: (+, -)
- Points on axes are NOT in any quadrant
- Distance from origin = \(\sqrt{x^2 + y^2}\)
- Distance between points = \(\sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}\)
- Points with same y-coordinate are horizontally aligned
- Points with same x-coordinate are vertically aligned
- ---
Graphs of Linear Equations
What is Graphing a Relation? A relation is a set of ordered pairs. Graphing a relation means plotting all points that satisfy a given condition or equation.
Common Relations to Graph:
| Relation | Description | Example |
|---|---|---|
| \(x = k\) | Vertical line at \(x = k\) | \(x = 3\) (vertical line) |
| \(y = k\) | Horizontal line at \(y = k\) | \(y = 2\) (horizontal line) |
| \(y = x\) | Diagonal line (slope 1) | Points like (0,0), (1,1), (2,2) |
| \(y = mx + c\) | Straight line | \(y = 2x + 1\) |
| \(x = y\) | Line at 45° | Points where coordinates are equal |
How to Graph a Simple Equation:
- Make a table of values (choose 3-5 x-values)
- Calculate corresponding y-values
- Plot each ordered pair
- Connect the points (if they form a line)
Identifying Patterns:
- Linear relations (\(y = mx + c\)) form straight lines
- The line \(y = x\) passes through origin at 45°
- Vertical lines: \(x = \text{constant}\) (all points share same x)
- Horizontal lines: \(y = \text{constant}\) (all points share same y)
- y = mx passes through the origin; y = mx + c cuts the y-axis at c.
- Substitute x to find a point; steeper distance-time graph = faster.
- To graph a relation, plot points that satisfy the condition
- \(y = mx + c\) represents a straight line (m = slope, c = y-intercept)
- \(x = \text{constant}\) → vertical line
- \(y = \text{constant}\) → horizontal line
- \(y = x\) is a diagonal line through origin (45° angle)
- Use a table of values to find points before plotting
- ---