Using methods in earlier sections it can be shown that this is not isobaric for any degree including
The above ode becomes
The question now becomes how to find
Where
The above is satisfied if
And
Since transformation is found, then substituting the above 2 equations back in (1) gives
The above ode is now homogeneous ode of class A. We can verify this using method from above section as follows
We see that this is indeed homogeneous ode of class A. Now this is solved easily using the substitution
Hence the solution (3) in
The above is the solution (implicit) to the original ode. The main difficulty with this method is in solving (if possible) equation (2) when
For
restart; eq:=1=3*X/Y*(2*Y+2*y0-1)/(6*X+6*x0-1); solve(identity(eq,X),[x0,y0])
Which gives
[[x0 = 1/6, y0 = 1/2]]
And Using Mathematica
eq = 1 == 3*X/Y*(2*Y + 2*y0 - 1)/(6*X + 6*x0 - 1); SolveAlways[eq, {X, Y}]
Which gives
{{x0 -> 1/6, y0 -> 1/2}}