Math 150, Maple Assignment # 1

Here's how to define the function f(x) = x^2 in Maple: > f := x -> x^2; Note the unusual notation to define a function f. The “:=” initializes the function f, while the “x->x^2” says that for an input x, we get output x^2. (Beware of the cursor; sometimes after using the ^ for powers, … ................
................