A200680 Decimal expansion of the greater of two values of x satisfying 2*x^2 = tan(x) and 0 < x < Pi/2.
1, 2, 7, 0, 3, 4, 2, 6, 4, 7, 7, 9, 9, 5, 8, 2, 7, 1, 1, 0, 6, 3, 9, 9, 0, 3, 3, 5, 0, 3, 2, 0, 2, 1, 1, 2, 5, 1, 4, 7, 6, 9, 7, 3, 1, 0, 4, 6, 2, 8, 0, 7, 5, 6, 5, 6, 7, 6, 2, 5, 4, 0, 1, 2, 7, 6, 5, 4, 9, 0, 4, 4, 1, 1, 5, 6, 5, 0, 3, 4, 9, 6, 4, 1, 6, 9, 7, 1, 2, 3, 6, 3, 5, 9, 4, 4, 1, 3, 5
Offset: 1
Examples
lesser: 0.55970415227308065061037721283588022... greater: 1.27034264779958271106399033503202112...
Crossrefs
Cf. A200614.
Programs
-
Mathematica
a = 2; c = 0; 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, .5, .6}, WorkingPrecision -> 110] RealDigits[r] (* A200679 *) r = x /. FindRoot[f[x] == g[x], {x, 1.2, 1.3}, WorkingPrecision -> 110] RealDigits[r] (* A200680 *)
Comments