Please post code, not images.
The plot is accurate, the expression value is highly oscillatory and negative in the plotted domain.
ClearAll[eq1, x];
eq1 = -2564855351 + 2564855351 Sqrt[2564855351] x Sqrt[1/(x + 2564855351 x^2)]
values = Table[{x, N@eq1}, {x, 41223, 41281}]
values = Table[{x, N@eq1}, {x, 41223, 41281, .05}]
Extend the domain
Plot[eq1, {x, 1000, 100000}, PlotRange -> All]
The expression is never >=0, its limit is 0 as x -> Infinity
Limit[eq1, x -> Infinity]