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

AI Thread Summary
The discussion focuses on finding the smallest natural number \( n \) such that \( \sin \left(\frac{1}{n+1934}\right) < \frac{1}{1994} \). It is established that for \( 0 < x < 1 \), \( \sin(x) < x \), leading to the conclusion that \( n = 60 \) satisfies the inequality. Testing \( n = 59 \) reveals that \( \sin\left(\frac{1}{1993}\right) \) is greater than \( \frac{1}{1994} \). Since \( \sin\left(\frac{1}{n+1934}\right) \) decreases with increasing \( n \), the smallest \( n \) that meets the condition is confirmed to be 60. Thus, the solution to the inequality is \( n = 60 \).
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]
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
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...
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