Why Does the Value of Tan(89.99...) Converge to 18/pi?

  • Thread starter Thread starter guysensei1
  • Start date Start date
AI Thread Summary
The discussion explains why the value of tan(89.99...) converges to 18/pi as the number of nines increases. Calculations show that as the angle approaches 90 degrees, the tangent function behaves similarly to an exponential function, leading to values that closely approximate 5.72957795130823. However, divergence occurs beyond a certain point, indicating that while initial values follow a pattern, they eventually deviate significantly. The relationship between tangent and its complementary angle is highlighted, emphasizing the importance of working in radians for clarity. Ultimately, the tangent function's behavior near 90 degrees reveals complex convergence and divergence patterns.
guysensei1
Messages
31
Reaction score
0
In degrees, look at what the result is when you take tan(89), tan(89.9), tan(89.99) etc.

The value as the number of 9's gets larger converges to 18/pi, with a shifted decimal point.

Why?
 
Mathematics news on Phys.org
Observe:
Code:
octave:10> t
t =

   89.900
   89.990
   89.999
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000
   90.000

octave:11> tan(t*pi/180)
ans =

   5.7296e+02
   5.7296e+03
   5.7296e+04
   5.7296e+05
   5.7296e+06
   5.7296e+07
   5.7296e+08
   5.7296e+09
   5.7295e+10
   5.7296e+11
   5.7278e+12
   5.7535e+13
   5.4419e+14
   3.5301e+15
   1.6332e+16

18/pi is 5.72957795130823

To 4dp that 5.6296 ... but notice that the calculation departs from the pattern at the e+10 stage?
(That is when theta is 89.999999999 ... 9 "9"'s in a row.)

Lets try it without rounding up:
Code:
octave:12> format long

octave:14> tan(t*pi/180)
ans =

   5.72957213354303e+02
   5.72957789312165e+03
   5.72957795072129e+04
   5.72957795104345e+05
   5.72957794122192e+06
   5.72957798144568e+07
   5.72957787343207e+08
   5.72957898008453e+09
   5.72953173262481e+10
   5.72956950454798e+11
   5.72776101541460e+12
   5.75350505624601e+13
   5.44191874731457e+14
   3.53013952228678e+15
   1.63317787283838e+16

What you are seeing is that the tangent function behave a bit like an exponential function for values close to 89.999999deg ... just like it behaves like y=x for values close to 0. What you are not seeing is any convergence to a pattern - far from it, continuing the calculation shows divergence as the argument approaches 90deg.
 
We have the identity

tan(90-x)=1/tan(x)

it is better to work in radians so that

tan(pi/2-x)=1/tan(x)

when x is small we have (~ mean approximately)
tan(x)~x
so
tan(pi/2-x)=1/tan(x)~1/x

back in degrees

tan(90-x)=1/tan(x)~180/(pi x)

as you observed
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...
Back
Top