Mistakes give rise to Problems- 10

Geometry Level 4

In a fraction, if you cancel out the cos \cos and the ^\circ symbol, like cos ( a ) cos ( b ) = a b \dfrac{\cos (a^\circ)}{\cos (b^\circ)}= \dfrac{a}{b} then it's a Big Mistake!!! \color{#D61F06}{\textbf{Big Mistake!!!}}


But for how many ordered integer pairs ( a , b ) \color{#3D99F6}{(a,b)} , such that 10 a , b 10 -10\leq a,b \leq 10 is the above said "false" property seen to be "true" ?


This problem is the 10th problem of my set Mistakes Give Rise To Problems


The answer is 20.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

3 solutions

Aditya Raut
Jul 31, 2014

This thing is true if and only if \color{#D61F06}{\textbf{if and only if}} a = b a=b

(Because though cos ( a ) = cos ( a ) \cos(a)=\cos(-a) , if we take b = a b=-a then LHS=1, RHS= -1.

Thus there are 20 \boxed{20} pairs, as a = b 0 a=b \neq 0 , so they can be integers 10 -10 to 10 10 except 0 0 .

namely, they are ( 10 , 10 ) , ( 9 , 9 ) , . . . . , ( 1 , 1 ) , ( 1 , 1 ) , ( 2 , 2 ) , . . . . , ( 9 , 9 ) , ( 10 , 10 ) (-10,-10),(-9,-9),....,(-1,-1),(1,1),(2,2),....,(9,9),(10,10)

How do you know for certain that no other pairs work?

Calvin Lin Staff - 6 years, 10 months ago

DAMN!!! I COUNTED 0/0=cos0/cos0. SUCH A TERRIBLE MISTAKE!!!

A Former Brilliant Member - 6 years, 10 months ago

Log in to reply

Do you like the set sir ? :)

Aditya Raut - 6 years, 10 months ago

Log in to reply

Aditya, I really liked your set..and needless to mention, these are really common mistakes that people make! Such a nice noticing power you have to have noticed such mistakes!!!

Pankaj Joshi - 6 years, 10 months ago

Log in to reply

@Pankaj Joshi Thank you very much @Pankaj Joshi , I am thinking of some more now ;) See other sets too, btw, i am classmate of Dinesh... it u wanna contact on gmail , adityaraut34@gmail.com

Aditya Raut - 6 years, 10 months ago

Log in to reply

@Aditya Raut I know that u and Dinesh r classmates and your id has been added to my gmail account yesterday by me! Keep ur good work up..

Pankaj Joshi - 6 years, 10 months ago

i did the same mistake :p

Abhinav Raichur - 6 years, 10 months ago

means you mean cos(-10)/cos(-10) type ?

Apoorv Padghan - 6 years, 10 months ago

Log in to reply

Yeah. 20 pairs.

Aditya Raut - 6 years, 10 months ago

You should also discuss the monotonicity of (cos x)/x in (0,10 ) and (-10 ,0).

Arif Ahmed - 6 years, 9 months ago

Well i got the answer 20. But how do you know that no other pair satisfies the relation.

Keshav Tiwari - 6 years, 10 months ago

I'd like to add info from Aditya's solution...

Yes... the equation is true if and only if a = b with the help of symmetric property of cosine: cos(-x) = cos (x)...

Suppose we contradict the fact that there are other pairs aside from a = b that satisfies the equation.

Consider the increasing and decreasing behavior of cosine as x tends to 0 (maybe using a bit of Calculus here), the cosine is increasing as x goes to 0. This means the function is increasing as x goes to 0. So that means if a > b, then cos(a) < cos b (satisfying the condition) this means that a/b > 1 and cos (a) / cos (b) < 1, contradiction.

Hence, there are 20 ordered pairs.

why don't you include the pair of (0,0)? . Because it is also present in the limit.

Vignesh Chella - 6 years, 10 months ago

Log in to reply

(0, 0) gives cos(a)/cos(b) = 1/1 but it is not equal to 0/0.

John Ashley Capellan - 6 years, 10 months ago
Spy Mabana
Nov 27, 2014

I created a brute-force algorithm for c++ to check each pair ( a , b ) (a, b) such that 10 a , b 10 -10 \leq a, b \leq 10 and b 0 b \neq 0 .

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#define PI 3.14159265

int main () {
    int count = 0;
    for(int a = -10; a <= 10; a++) {
        for(int b = -10; b <= 10; b++) {
            if(!b) continue; //skip b = 0 
            if(cos(a*PI/180) / cos(b*PI/180) == a/b) count++;
        }
    }
    cout << "Result is " << count << endl;
}

The result is 20 \boxed{20} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...