Summary of Sketching an equation, Symmetry Test and Exercises

Type I: When y is being expressed in terms of x, for example tex2html_wrap_inline53 Then we treat x as inputs and y as outputs when we make the x-y table:

tex2html_wrap_inline61

Can you sketch the graph now? [plot(sqrt(x-4),x=0..7, y=0..10); ]

Type II. When x being expressed in term of y. Then we treat y as inputs and x as outputs when we make the x-y table. For example, x=2y2-1, then

tex2html_wrap_inline75

Can you sketch the graph now? Notice that you should get a graph that is symmetric to the x-axis. Use

  1. y=3x-2 [maple syntax: plot(3*x-2, x=-5..5, y=-10..10); )
  2. y=x2-2 [maple syntax: plot(x^2-2, x=-5..5);]
  3. y=-2x2+1 [maple syntax: plot(-2*x^2+1, x=-5..5);]
  4. tex2html_wrap_inline87 [maple syntax: plot(abs(x), x=-5..5);]
  5. tex2html_wrap_inline89
  6. tex2html_wrap_inline91 [maple syntax: plot(sqrt(x+1), x = -2..3);]
  7. tex2html_wrap_inline93[maple syntax: plot(sqrt(x)-2, x= -5..5); ]

Note that if we would like to plot the graphs of #5, #7 and #8 together, the maple syntax is:

plot({sqrt(x), sqrt(x+1), sqrt(x)-2}, x=-5..5);

  1. Type I. Symmetric to the x-axis: If both (x,y) and (x,-y) both satisfy an equation, then the graph of such equation is symmetric to the x-axis. For example, x=y2.
  2. Type II. Symmetric to the y-axis: If both (x,y) and (-x,y) both satisfy an equation, then the graph of such equation is symmetric to the y-axis. For example, y=x2.
  3. Type III. Symmetric to the origin, (0,0): If both (x,y) and (-x,-y) both satisfy an equation, then the graph of such equation is symmetric to the origin, (0,0). For example, y=x3.
  1. tex2html_wrap_inline129 [ plot(2*abs(x), x=-5..5); ]
  2. tex2html_wrap_inline131 [ plot(abs(x) + 1, x =-3..3, y=0..3); ]
  3. tex2html_wrap_inline133 [ plot(abs(x+1), x= -3..1); ]
  4. tex2html_wrap_inline135 [ plot(1/x , x= -10..10, y=-5..5); ]
  5. y=4x2
  6. tex2html_wrap_inline139
  7. x2-y2=1 [ with(plots): implicitplot(x^2 - y^2 =1, x =-2..2, y=-2..2, scaling=constrained); ] (note that you need to also copy "with(plots):"
  8. x2+y2=1 [ with(plots): implicitplot(x^2 + y^2 =1, x =-2..2, y=-2..2, scaling=constrained); ] (note that you need to also copy "with(plots):"