Y by truffle, HamstPan38825, samrocksnature, megarnie
I was recently facing some problems regarding reading solutions. I have read some blogs of Evan Chen on that (1. For solution reading ; 2. General) and have got advice from some other expert people too. What I mainly understood is the following:
It is not necessary to understand every possible solution to a problem. One should look at a solution only if it is
But I have two doubts now:
1. Suppose I see a long solution. Then maybe I should first try to understand it properly, like understand all its arguments precisely. Then I should try to find the key idea behind the solution. But this process might take some time. Sometimes it might even take 20-30 minutes or so. So is this time worth spending? Since in general it is said that "It's going to be very counter-productive if seeing the sol takes too much time, most of the gain still comes from attempting the questions on your own."
2. Not all problems have official solution or some famous people posted solution to them. In that case mainly which solutions should I focus more on? Like the ones which seem shorter in length or ones which are on post #2? Of course the latter classification doesn't seem to be a nice idea. On the first classification, sometimes a long solution might have a short key idea and similarly, a short-looking solution might be harder to grasp.
Two recent examples of doubt 1. are as follows:
The following problem is Sharygin Finals 2018 Grade 10 P4
Following is its official solution.


The solution seems long and complicated. But after I read it, I understood that the overall idea behind it is quite clever. One doubt is the following:
Should I be trying to verify some of the facts written in the solution without proof, for example why the mentioned construction worked and why everything written in the following paragraph is true:

The second example is Sharygin Finals 2018 Grade 9 P8.
Below is the official solution:





It is not necessary to understand every possible solution to a problem. One should look at a solution only if it is
- fairly clean/short
- and idea behind it is very clever/unique
But I have two doubts now:
1. Suppose I see a long solution. Then maybe I should first try to understand it properly, like understand all its arguments precisely. Then I should try to find the key idea behind the solution. But this process might take some time. Sometimes it might even take 20-30 minutes or so. So is this time worth spending? Since in general it is said that "It's going to be very counter-productive if seeing the sol takes too much time, most of the gain still comes from attempting the questions on your own."
2. Not all problems have official solution or some famous people posted solution to them. In that case mainly which solutions should I focus more on? Like the ones which seem shorter in length or ones which are on post #2? Of course the latter classification doesn't seem to be a nice idea. On the first classification, sometimes a long solution might have a short key idea and similarly, a short-looking solution might be harder to grasp.
Two recent examples of doubt 1. are as follows:
The following problem is Sharygin Finals 2018 Grade 10 P4
Sharygin Finals 2018 Grade 10 P4 wrote:
We say that a finite set
of red and green points in the plane is orderly if there exists a triangle
such that all points of one colour lie strictly inside
and all points of the other colour lie strictly outside of
. Let
be a finite set of red and green points in the plane, in general position. Is it always true that if every
points in
form a orderly set then
is also orderly?








Following is its official solution.



The solution seems long and complicated. But after I read it, I understood that the overall idea behind it is quite clever. One doubt is the following:
Should I be trying to verify some of the facts written in the solution without proof, for example why the mentioned construction worked and why everything written in the following paragraph is true:

The second example is Sharygin Finals 2018 Grade 9 P8.
Sharygin Finals 2018 Grade 9 P8 wrote:
Consider a fixed regular
-gon of unit side. When a second regular
-gon of unit size rolls around the first one, one of its vertices successively pinpoints the vertices of a closed broken line
as in the figure.
![[asy]
int n=9;
draw(polygon(n));
for (int i = 0; i<n;++i) {
draw(reflect(dir(360*i/n + 90), dir(360*(i+1)/n + 90))*polygon(n), dashed+linewidth(0.4));
draw(reflect(dir(360*i/n + 90),dir(360*(i+1)/n + 90))*(0,1)--reflect(dir(360*(i-1)/n + 90),dir(360*i/n + 90))*(0,1), linewidth(1.2));
}
[/asy]](//latex.artofproblemsolving.com/d/a/4/da4418d91b2cde126bf559427bda331393273495.png)
Let
be the area of a regular
-gon of unit side, and let
be the area of a regular
-gon of unit circumradius. Prove that the area enclosed by
equals
.



![[asy]
int n=9;
draw(polygon(n));
for (int i = 0; i<n;++i) {
draw(reflect(dir(360*i/n + 90), dir(360*(i+1)/n + 90))*polygon(n), dashed+linewidth(0.4));
draw(reflect(dir(360*i/n + 90),dir(360*(i+1)/n + 90))*(0,1)--reflect(dir(360*(i-1)/n + 90),dir(360*i/n + 90))*(0,1), linewidth(1.2));
}
[/asy]](http://latex.artofproblemsolving.com/d/a/4/da4418d91b2cde126bf559427bda331393273495.png)
Let






Below is the official solution:




