Group Abstract Group Abstract

Message Boards Message Boards

0
|
2.8K Views
|
4 Replies
|
4 Total Likes
View groups...
Share
Share this post:
GROUPS:

Input Output Table

Posted 7 years ago

Hello everyone, This is first post. I have been struggling helping my daughter with her pre-algebra. I was helping her with input/output tables with slopes. I figured out all of them except one and have been racking my brain. Hoping I can get some help on this last one. I have attached a pic.

Thank you.!

enter image description here

POSTED BY: Robert Hamilton
4 Replies

Thanks! If I remember correctly the function FindFormula was for quite a long time just "Experimental" ...

Regards -- Henrik

POSTED BY: Henrik Schachner

Wow!, great answer.

I did not think about this function.

Regards,MI

POSTED BY: Mariusz Iwaniuk

Yes, yes, I know: One should not respond to posts without any attempt by the OP and obviously without any reference to Mathematica. But it is just too tempting!

In[2]:= data = {{2, 6}, {4, 20}, {7, 56}, {10, 110}};

In[3]:= FindFormula[data, x]

Out[3]= 1. x + 1. x^2.

Isn't Mathematica just great ?!?

POSTED BY: Henrik Schachner

enter image description here

      x^2  + x  =  y

.

 y[x_] := x^2 + x;
 dataX = {2, 4, 10, -3, 5, 7, 1};
 dataY = y[data];
 Grid[Join[{{"In[x]", "Out[y]"}}, Transpose[{dataX, dataY}]],  Frame -> All]

enter image description here

POSTED BY: Mariusz Iwaniuk
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard