Subject Areas
  Basics
  Algebra
  Geometry
  Statistics
  Trigonometry
  Calculus
Tools / Misc
  GED
  Graphing
  Math Tools

scrnGC2: Calc Input
scrnGC3: f(x) Plot Input
scrnGC4: g(x) Plot Input
The inputs above will be hidden when the program finally gets launched. Currently, I am not hiding them even when you close the calculator. The purpose of the inputs is to help in debugging. This allows you to enter simple code on the calculator screen but the program translates the input to javascript math. Give it a try and see if you notice any obvious problems or have suggestions for improvements.
Midpoint Computation Help
Valid HTML 4.0 Transitional
The midpoint between two points can be found using the following formula:

MP(x,y) = ( (x0 + x1) / 2 , (y0 + y1) / 2 )

In simplest terms, this is the average of the x-coordinates and the average of the
y-coordinates.

Example:

Given:      A(2,3) and B(8,-7), find the midpoint between A to B.

x-coordinate average = (2 + 8)/2 = 10/2 = 5.

y-coordinate average = (-7 + 3)/2 = -4/2 = -2.

Therefore, the midpoint is at (5,-2).

Plotting the points on graph paper reveals that the computed midpoint is correct.


© 2002- John Schlecht. All rights reserved.