MHB Trigonometric inequality: sin (1/(n+1934))<1/1994

anemone
Gold Member
MHB
POTW Director
Messages
3,851
Reaction score
115
Find the smallest natural number $n$ for which $\sin \left(\dfrac{1}{n+1934}\right)<\dfrac{1}{1994}$.
 
Mathematics news on Phys.org
As $\sin x<x$ for all $x>0$ – in particular $\sin\left(\dfrac1{1994}\right)<\dfrac1{1994}$ – it suffices to show that $\sin\left(\dfrac1{1993}\right)>\dfrac1{1994}$.

By Taylor’s theorem, $\sin x=x-\dfrac{x^2}2\sin\xi$ for some $0<\xi<x$ (using the Lagrange form of the remainder). Thus:

$\begin{array}{rcl}\sin x &=& x-\dfrac{x^2}2\sin{\xi} \\\\ {} &>&x-\dfrac{x^2}2\xi \\\\ {} &>& x-\dfrac{x^3}2.\end{array}$

Hence $\sin\left(\dfrac1{1993}\right)>\dfrac1{1993}-\dfrac{\left(\frac1{1993}\right)^3}2 = \dfrac{7944097}{15832587314}>\dfrac1{1994}$, as required. So the smallest natural number is $\boxed{n=60}$.
 
Code:
    for (unsigned int n = 0; n <= 60; n++)
        if ((sin(1/(n + 1934.0))) < 1/1994.0)
            std::cout << n;

(Bigsmile)
 
anemone said:
Find the smallest natural number $n$ for which $\sin \left(\dfrac{1}{n+1934}\right)<\dfrac{1}{1994}$.
[sp]
For $0<x<1$, we have $\sin(x)<x$. This shows that the inequality is satisfied for $n=60$. Taking $n=59$, we find:
$$
\sin\left(\frac{1}{1993}\right)\approx 0.00050176> \frac{1}{1994}\approx 0.00050150
$$
As $\sin\left(\dfrac{1}{n+1934}\right)$ is a decreasing function of $n$ for $n>0$, this shows that the smallest $n$ that satifies the inequality is $60$.
[/sp]
 
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...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top