A200622 Decimal expansion of the lesser of two values of x satisfying 5*x^2 - 2 = tan(x) and 0 < x < Pi/2.
7, 7, 0, 8, 9, 6, 8, 8, 3, 9, 1, 4, 2, 7, 7, 1, 8, 2, 8, 3, 7, 2, 6, 4, 9, 2, 7, 3, 5, 8, 7, 0, 6, 3, 2, 1, 8, 6, 8, 7, 5, 4, 8, 4, 3, 3, 6, 1, 9, 2, 8, 8, 8, 3, 4, 1, 1, 0, 9, 3, 2, 0, 8, 9, 6, 3, 2, 6, 1, 7, 9, 1, 3, 9, 9, 0, 3, 8, 2, 1, 8, 6, 6, 4, 7, 7, 7, 3, 0, 9, 1, 9, 7, 1, 1, 5, 9, 8, 7
Offset: 0
Examples
lesser: 0.770896883914277182837264927358706321868754... greater: 1.454799213519995526370784300798944589012608...
Crossrefs
Cf. A200614.
Programs
-
Mathematica
a = 5; c = 2; f[x_] := a*x^2 - c; g[x_] := Tan[x] Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .7, .8}, WorkingPrecision -> 110] RealDigits[r] (* A200622 *) r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110] RealDigits[r] (* A200623 *)
Comments