I'm trying to plot the solution of an ODE and I would like to have the ticks in powers of ten. Although, this happes automatically from Mathematica for small orders, such as 10^(-6), it doesn't happen for orders of 10^(-5) and smaller. I tried to fix it in FrameTicks, but it shows as a fraction. The code is the following:
y =.;Sol = NDSolve[{D[y[x], x] == -4*10^(-2)*(y[x] - 10)*y[x],
y[0] == 0.00999}, {y}, {x, 0, 0.000125}];
Plot1 = Plot[Evaluate[y[x] /. First[Sol]], {x, 0, tend},MaxRecursion -> 15, PlotPoints -> {200000, 100000}, Mesh -> False,AxesLabel -> {x, y}, PlotRange -> All, PlotStyle -> Green,FrameLabel -> {Style["x", FontFamily -> "MS Serif",FontSize -> 22],Style["y", FontFamily -> "MS Serif", FontSize -> 22]},RotateLabel -> True,Frame -> {{Automatic, False}, {Automatic,False}}];
Show[Plot1, PlotRange -> {{0, 0.000125}, {0.00999, 0.01}}, MaxRecursion -> 1000, PlotPoints -> {200000, 100000},AspectRatio -> 1, AxesOrigin -> {0, 0}, RotateLabel -> True,LabelStyle -> {20, GrayLevel[0]},FrameTicks -> {{{0, 0.00999, 0.009992, 0.009994, 0.009996, 0.009998,0.01}, None},{{0, 0.0000625, 0.000125}, None}}]
Is there a way to fix the tics in the plot?

LogPlot[]orLogLogPlot[]? There's only one power of ten that's showing fory: Do you want only one tick mark? [Or, wild guess, do you want the ticks in scientific notation?) – Michael E2 Sep 25 '21 at 17:141.25*10^(-4)in the x-axis and9.99*10^(-3)in the y-axis. Is this possible? – Vicky Sep 25 '21 at 17:28FrameTicks -> {{{#, ScientificForm@#} & /@ {0, 0.00999, 0.009992, 0.009994, 0.009996, 0.009998, 0.01}, None}, {{#, ScientificForm@#} & /@ {0, 0.0000625, 0.000125}, None}}– Michael E2 Sep 25 '21 at 18:12AxesOrigin? – Michael E2 Sep 25 '21 at 19:26y-0.00999at the y-axis andx-0.0000625at the y-axis? Then the numbers at the ticks, would be much easier to see. – Alexei Boulbitch Sep 25 '21 at 20:56