I am trying to get using math, the solution of the following system of equations:
x' = 4x - 3y
y' = 6x - 1y
After using the DSolve command:
DSolve[{4 x[t] - 3 y[t] == x'[t], 6 x[t] - 7 y[t] == y'[t]}, {x[t], y[t]}, t]
I get the following output:
{{x[t] -> 1/7 E^(-5 t) (-2 + 9 E^(7 t)) C[1] - 3/7 E^(-5 t) (-1 + E^(7 t)) C[2], y[t] -> 6/7 E^(-5 t) (-1 + E^(7 t)) C[1] - 1/7 E^(-5 t) (-9 + 2 E^(7 t)) C[2]}}
I'm trying to plot this solution to get me the phase plane, but I have no idea how to do it.
I would appreciate it if someone told me how to plot this type of equation.

What you are getting here is a general solution with two indetermined coefficients
C[1]andC[2]. You can not plot it. To plot it you need an exact solution for which you need the boundary values. For example, let's choose the boundary conditionsx[0] == 2.3, y[0] == 1.41and2are your two solutions. You can call them assol[t][[1]]andsol[t][[2]].