Sorry if is this is a repeat post. I couldn’t find anything in the Symbolics.jl docs nor in some cursory Google searching.
I have the following code:
using Symbolics, Nemo
@variables r P K
symbolic_solve(0 ~ r * P * (1 - (P / K)), P)
The output is:
2-element Vector{Any}:
K
0
Is there anyway to show the steps (i.e. the transformations to the equation) the solver took to get those results? Thank you for your help!