Graph

Revision as of 01:14, 13 August 2006 by Myself (talk | contribs) (Solution: remove the word "we")

A graph is a visual representation of a function. If $f(x) = y$ then the point $(x,y)$ lies on the graph of $f$.

Graphing Points

A single point is the simplest thing to graph. The graph of $(2,5)$ would be a dot 2 units to the right of $y$-axis and 5 units above the $x$-axis.

Point(2,5).PNG

Graphing Lines

Given two distinct points on a line, one can construct the whole line. So one way to graph a line given its equation is to just find two points on it and to draw a straight line through them.

Problem

Graph the line $2x + 3y = 24$.

Solution

To graph a line, it is necesasry to find two points $(x,y)$ that satisfy $2x + 3y = 24$. Letting $x=0$ gives $3y = 24\Leftrightarrow y = 8$. So $(0,8)$ is one point on the graph.

Find another point by letting $y=0$. Plugging this in and solving gives $x=12$. So $(12,0)$ is our other point.

Now plot these in the coordinate plane and draw a line through them:

Twopoints2.PNG

The arrowheads on the ends of the line segment indicate that the line goes on infinitely in both directions.

Graphing Polynomials

The first step in graphing a polynomial, $p(x)$, is to find the zeros of $p(x)=0$. Then a smooth curve should be drawn through the zeros accounting for multiple roots and making sure the signs match up (i.e. the graph is above the $x$-axis when the polynomial is positive and below it when the polynomial is negative). This process is best understood through examples.

Problem

Graph the parabola $y = 2x^{2} + x - 3$.

Solution

Luckily the quadratic factors as $(2x+3)(x-1)$ making the roots $x=-\frac 32$ and $x=1$. The quadratic can only switch signs as its zeros. So picking one point less than $-\frac 32$ and plugging it in will tell us whether the graph is above or below the $x$-asis for all $x$ on the interval $\left(-\infty, -\frac 32\right).$ Since $f(-2)=3$ is positive, the graph is above the $x$-axis.

Likewise, we do a sign analysis on the intervals $\left(-\frac 32, 1\right)$ and $(1, \infty)$, draw a smooth curve curve through the zeros using this information as a guideline:

Parabola1.PNG

Problem

Graph $x^4 - 2x^3 -7x^2 +20x -12$.

Solution

First, we find the zeros of the function. Plugging in numbers, we find $x=1$ works. After synthetic division we have $(x-1)(x^3 - x^2 - 8x + 12)$. Plugging numbers into the cubic, we find that $x=2$ works. Thus, we have $(x-1)(x-2)(x^2+x-6)$. Finally, we can factor the quadratic giving us $(x-1)(x-2)^2(x+3)$. So we have roots at 1 and -3 and a double root at 2. Our final graph looks like:

Quartic1.PNG

See also