I want to use this code for the backward Numerical solution but patently not well defined?
Clear["Global`*"]
f = 0.7; γ = 1;
NDSolve[{s''[x]/s[x] + ((3 γ)/2 - 1) (s'[x]/s[x])^2 - (3 γ*f)/2 == 0, s[1] == 1, s'[1 - 100 $MachineEpsilon] == 1, s[1 - 100 $MachineEpsilon] == 1}, s, {x, 0, 1 - 100 $MachineEpsilon},
Method -> {"Shooting", "StartingInitialConditions" -> {s[1] == 1, s'[1] == 1}}];
ListLinePlot[s /. %]
