MATLAB Script to Calculate and Plot the Polynomials and To Perform Simple Arithmetic
Problem
Write a script to calculate and plot the polynomials, and then perform simple arithmetic on them.
Use the following polynomials, and x between -2 and 2. Programming note: You'll be using the x limit values (-2 and 2) in quite a few places; best to make them variables so that you can change them easily later if you want.
Y1 = 3x3+ 5x2 - 1
Y2 = 24x4 + 49x3+15x2 - 8x - 3
Y3 = 8x + 3
Additional information:
This question belongs to MATLAB software and discusses about application of MATLAB in mathematics to solve polynomials and to perform certain operations.
Answer is in MATLAB format