User Portlet User Portlet

Discussions
I have a parametric differential equation: sol = ParametricNDSolve[{a.p[t]/(1 -b.p[t]) == c.p'[t], p'[0] == 0},p,{t, 0, 10}, {a,b,c}] I'd like to plot solutions with different values of parameter a: Plot[Evaluate[Table[sol[a, 1, 2][t], {a,...
I need to get a symbolic solution to a system of non-linear equations (equation 8 is non-linear), but Mathematica is running for ever and gives no answer. Is there another way to get the solution? My codes are: eq1 = g1 - g2 - g3 == 0 ...