3.3.9.1 Example 1
y=8y2+12xy10y6x+3y2+6xy2y+9x26x+1

Using methods in earlier sections it can be shown that this is not isobaric for any degree including m=1 (which means it is not even homogeneous ode of class A, which is special case of isobaric). Let

x=X+x0y=Y+y0

The above ode becomes

(1)Y=8(Y+y0)2+12(X+x0)(Y+y0)10(Y+y0)6(X+x0)+3(Y+y0)2+6(X+x0)(Y+y0)2(Y+y0)+9(X+x0)26(X+x0)+1=F(X,Y)

The question now becomes how to find x0,y0 such that the above ode is isobaric of degree 1. (i.e. homogeneous ode of class A). Earlier section showed that this becomes the condition that

(2)m=XFXY FY

Where m=1. Applying the above to (1) and setting m=1 gives

1=XddX(8(Y+y0)2+12(X+x0)(Y+y0)10(Y+y0)6(X+x0)+3(Y+y0)2+6(X+x0)(Y+y0)2(Y+y0)+9(X+x0)26(X+x0)+1)YddY(8(Y+y0)2+12(X+x0)(Y+y0)10(Y+y0)6(X+x0)+3(Y+y0)2+6(X+x0)(Y+y0)2(Y+y0)+9(X+x0)26(X+x0)+1)=X(6(3X+3Y+3x0+3y02)(2Y+2y01)(y01+3x0+Y+3X)3)Y(2(3X+3Y+3x0+3y02)(6X+6x01)(y01+3x0+Y+3X)3)=X(6(3X+3Y+3x0+3y02)(2Y+2y01))Y(2(3X+3Y+3x0+3y02)(6X+6x01))1=3XY2Y+2y016X+6x01

The above is satisfied if 2Y+2y016X+6x01=13YX. Which means 6Y+6y036X+6x01=YX. This implies if 6y03=0 and 6x01=0 then the equation is satisfied. Therefore a solution is found which is

6y03=0y0=12

And

6x01=0x0=16

Since transformation is found, then substituting the above 2 equations back in (1) gives

Y=8(Y+12)2+12(X+16)(Y+12)10(Y+12)6(X+16)+3(Y+12)2+6(X+16)(Y+12)2(Y+12)+9(X+16)26(X+16)+1=43XY+2Y2(3X+Y)2=G(X,Y)

The above ode is now homogeneous ode of class A. We can verify this using method from above section as follows

m=XGXYGY=XddX(4Y(3X+2Y)(3X+Y)2)YddY(4Y(3X+2Y)(3X+Y)2)=X(36Y(3X+Y)3(X+Y))Y(36X(3X+Y)3(X+Y))=1

We see that this is indeed homogeneous ode of class A. Now this is solved easily using the substitution Y=uX. This results in

(3)ln(Y+XX)+3ln(YX)3ln(3XYX)lnX=c1

But from earlier

X=xx0=x16Y=yy0=y12

Hence the solution (3) in y(x) now becomes

ln(y12+x16x16)+3ln(y12x16)3ln(3(x16)(y12)x16)ln(x16)=c2ln(x+y23x16)+3ln(6y36x1)3ln(6y18x6x1)ln(x16)=c2ln(6(x+y23)6x1)+3ln(6y36x1)3ln(6y3x6x1)ln(x16)=c2

The above is the solution (implicit) to the original ode. The main difficulty with this method is in solving (if possible) equation (2) when m=1 which is

1=XFXY FY

For x0,y0. In other words, to find explicit values for x0,y0 which makes the RHS above 1. If we can find such x0,y0 then the original ode can now be solved. If not, then this method will not work and we say the ode is not homogeneous ode of class C. Using the software Maple this can be found as follows

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}}