Question: how to dsolve these two equations

after tried dsolve(sol, [a,b,c]) or dsolve(sol,t), still have errors

First equation

sol := a*(diff(M(a, b, c), a))+a*b*(diff(M(a, b, c), b))*c
dsolve(sol);
Error, (in ODEtools/info) Required a specification of the indeterminate function

Second Equation

sol := a(t)*(diff(a(t), t))+a(t)*b(t)*(diff(b(t), t))*c(t)
dsolve(sol);
Error, (in ODEtools/info) Required a specification of the indeterminate function

Please Wait...