I am new to Mathematica and I am trying to plot some solution curves but I am only getting a straight line solution, can anyone help me with what I am doing wrong? Here is the code that I was trying to get to work:
Show[{VectorPlot[Normalize[{y, -8 y - 7 x}], {x, -3, 3}, {y, -3, 3},
VectorPoints -> 14, VectorStyle -> Arrowheads[0.015],
VectorScale -> 0.035],
Table[ParametricPlot[
Evaluate[{x[t], y[t]} /.
NDSolve[{x'[t] == y[t], y'[t] == -8 y[t] - 7 x[t], x[0] == a,
y[0] == b}, {x, y}, {t, -3, 5}]], {t, -3, 5},
PlotStyle -> Thick, AxesLabel -> {x, y}, PlotRange -> 3], {a, -2,
2, 1}, {b, -2, 2, 1}],
Graphics[{Blue, PointSize[Large], Point[{0, 0}]}]}, PlotRange -> 3]