1

Is it possible to use Wolfram Alpha to make something like this into a graph and have it display the proper function?

enter image description here

In that case, how would I syntactically write it in Wolfram?

Zev Chonoles
  • 129,973

1 Answers1

1

If you just want to plot the points, then you can use

plot {{1, 12}, {3, 36}, {5, 60}, {7, 84}, {9, 108}}

enter image description here

If you want to try and approximate the function, then you can use

interpolate {{1, 12}, {3, 36}, {5, 60}, {7, 84}, {9, 108}}

enter image description here

Of course, this isn't going to give you the exact function that you're looking for every time (this happens to be a nice example), but it will give an approximate polynomial based upon the data that you feed in.

Warren Moore
  • 3,931
  • 1
    Nice. As you note, these points just happen to be collinear. You might also try fit, rather than interpolate, particularly when the points are not collinear. – Mark McClure Jun 02 '13 at 16:09