0
votes

I need help with this math problem for mathematica. See attached picture. Math Problem Picture Link

1
You should not expect everyone to click on a link, especially when it is something you could very well have typed in.agentp

1 Answers

2
votes

Taking cues from the Mathematica Navigator edition 3, chapter 26 Differential Equations, section 26.1.3 Simultaneous Equations, example 1, Basic Techniques.

vars = {x[t], y[t]};

eqns = {
   x'[t] == x[t] - 2 y[t],
   y'[t] == x[t] - y[t]};

(* define a range of initial conditions *)
range = Flatten[Table[{x0, y0}, {x0, 2, 4}, {y0, 0, 1}], 1];

sols = Function[{x0, y0},
    inits = {x[0] == x0, y[0] == y0};
    vars /. First@DSolve[Join[eqns, inits], vars, t]] @@@ range;

ParametricPlot[sols, {t, 0, 2 Pi},
 PlotLegends -> LineLegend["Expressions",
   LegendLabel -> Placed["Parametric Equations", Above],
   LegendFunction -> Framed]]

enter image description here