Question 943439
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)