SOLUTION: How do i write: m is the function that squares the input, then adds half of the input

Algebra ->  Functions -> SOLUTION: How do i write: m is the function that squares the input, then adds half of the input      Log On


   



Question 943439: How do i write: m is the function that squares the input, then adds half of the input
Answer by nerdybill(7384) About Me  (Show Source):
You can put this solution on YOUR website!
How do i write: m is the function that squares the input, then adds half of the input
.
Let's say the "input" is x
then the function "m" is:
m(x) = x^2 + x/2
or
m(x) = x(x + 1/2)
or
m(x) = x(x + .5)