Michael J. answered 04/16/16
Tutor
5
(5)
Understanding the Principles and Basics with Analysis
If you have MATLAB, then try writing this code exactly as it is written:
k = [1:0.5:6];
f(x) = [3, -3*k, 0, k];
x = roots(f(x))
Then once you written the last line of the code, press ENTER. It will give you all the possible solutions at these k values. If you have any questions about this MATLAB code, let me know.