Home

Basic Graphing

Point plotting

Point plotting is plotting points until the shape of the function is apparent.

Intercepts are points that have 0 as either the X or Y coordinates.

Knowing the symmetry of a graph can cut the amount of points you need by half.

In order to test for symmetry, replace your function’s X and/or Y with the corresponding -X and/or -Y for the symmetry you are checking and see if the functions are equal. If they are equal, it is symmetrical around that axis.

  1. Find X and Y intersections
  2. Test symmetries
  3. Plot points

Common equations and their graphs

Name Function Image Name Function Image
Line y=xy = x Squared y=x2y = x^2
Cubed y=x3y = x^3 Square root y=xy = \sqrt{x}
Abs y=xy = x Rational y=1xy = \frac{1}{x}

Lines

slope=m=riserun=y1y2x1x2=y2y1x2x1slope = m = \frac{rise}{run} = \frac{y_1 - y_2}{x_1 - x_2} = \frac{y_2 - y_1}{x_2 - x_1}

Form Name Equation
Point Slope yy1=m(xx1)y - y_1 = m(x - x_1)
Slope Intercept y=mx+by = mx + b
General ax+by+c=0ax + by + c= 0
Vertical line x = a
Horizontal line y = a

Parallel - two lines have the same slope. m1=m2m_1 = m_2

Perpendicular - two lines have negative reciprocals as slopes. m1=1m2m_1 = -\frac{1}{m_2}

Polynomials

f(x)=anxn+an1xn1++a2x2+a1x1+a0f(x) = a_{n}x^n + a_{n-1}x^{n-1} + … + a_{2}x^2 + a_{1}x^1 + a_0

Even degree polynomials:

an>0a_n > 0 Positive an<0a_n < 0 Negative

Odd degree polynomials:

an>0a_n > 0 Positive an<0a_n < 0 Negative

Function transformations

Name Function Example
Shift left f(x+c)f(x + c) y=(x+2)2y = (x + 2)^2
Shift right f(xc)f(x - c) y=(x2)2y = (x - 2)^2
Shift up f(x)+cf(x) + c y=x2+2y = x^2 + 2
Shift down f(x)cf(x) - c y=x22y = x^2 - 2
Reflect y-axis f(x)f(-x) y=(x)2=x2y = (-x)^2 = x^2
Reflect x-axis f(x)-f(x) y=x2y = -x^2
Reflect origin f(x)-f(-x) y=(x)2=x2y = -(-x)^2 = -x^2
Squeeze x-axis f(ax)f(ax) y=(ax)2y = (ax)^2
Stretch x-axis f(xa)f(\frac{x}{a}) y=(xa)2y = (\frac{x}{a})^2

Elementary functions

Elementary functions are functions that can represent many real world phenomena.

Algebraic functions

Algebraic functions are functions that can combine multiple algebraic operations on polynomials.

Operation name Function Shorthand Function Extended
Sum (f+g)(x)(f + g)(x) f(x)+g(x)f(x) + g(x)
Difference (fg)(x)(f - g)(x) f(x)g(x)f(x) - g(x)
Product (fg)(x)(fg)(x) f(x)g(x)f(x) * g(x)
Quotient (f/g)(x)(f/g)(x) f(x)/g(x)f(x) / g(x)
Composition (fg)(x)(f \circ g)(x) f(g(x))f(g(x))

Radical functions are the same as square root: f(x)=g(x)nf(x) = \sqrt[n]{g(x)}

Points of intersection