- #1
CAF123
Gold Member
- 2,948
- 88
I'm trying to solve a relatively simple equation with DSolve in Mathematica. The equation I'm trying to solve along with the output from mathematica is shown
This output is more or less useless to me because a) I don't know what #1 or & means in this context and b) I don't understand why it returns the inverse function and how I can then proceed to obtain the function. Can anyone illuminate me?
Thanks!
Code:
In[1]:=DSolve[x*y'[x] == -b0*y[x]^2 - b1*y[x]^3, y[x], x]
Out[1]:=
{{y[x] ->
InverseFunction[-((b1 Log[#1])/b0^2) + (b1 Log[b0 + b1 #1])/b0^2 -
1/(b0 #1) &][C[1] - Log[x]]}}
This output is more or less useless to me because a) I don't know what #1 or & means in this context and b) I don't understand why it returns the inverse function and how I can then proceed to obtain the function. Can anyone illuminate me?
Thanks!