After establishing linear independence, we have the general solution
Change only the following in initsys.m
t0 = 0; tf = 2;
x0vec = [3,2];
A = [1, 1; 4, 1];
B = [];
x1symb = '2*exp(3*t)+exp(-t)';
x2symb = '4*exp(3*t)-2*exp(-t)';
eqnname = 'cclin';
symbolicplot = 'solutions';
% symbolicplot = 'phase';
% symbolicplot = 'eigenvals';
% symbolicplot = '';
Save, then type initsys to initialize (or copy-and-paste at the
Emporium).
Type sys3plot
Make a visual check that your symbolic work matches the
appropriate plot in Figure 1. If all appears correct, print a copy of
the display.
The finished product is on the next page. (Note: Your work in
the upper left will be neatly hand written, not typed.) Also note
that the MATLAB plots ore only as good as the information you supplied
for t0, tf, x0vec, and A. Remember GIGO (Garbage In, Garbage
Out).