I encountered this problem about Newton's problem of cows and fields:
In a field, 17 cows can finish the whole grass in the field for 30 days. 19 cows can finish in 24 days. If a group of cows eat the grass for 6 days, then 4 cows are sold, the remaining cows can finish the grass in 2 days. What is the initial number of cows before 4 of them are sold?
I could do this problem using algebraic method but when I consulted another source, a different approach is used and I could not understand that approach.
Here is my way:
First we find the amount of grass that grows each day: $(17\times30-19\times24)\div(30-24)=9$ (the amount of grass is equivalent to the amount of grass that 9 cows could eat in a day).
Then we find the initial amount of grass before any cow eats: $(17\times30-9\times30)=240$ (the amount of grass is equivalent to the amount of grass that 240 cows could eat in a day).
Then we let the initial number of cows before 4 of them are sold be $x$. Then $(x-9)\times6+(x-4-9)\times2=240$. So $x=40$.
Another approach that confuses me is $(240+8\times9+1\times2\times4)\div28=40$. The explanation is: Suppose the 4 cows are not sold, then we have $240+8\times9+2\times4=320$ amount of grass (where we use the same unit as above). Then we have $320\div(6+2)=40$ cows.
My question is: when the cows are not sold, then we won't need 2 more days to finish the grass, why should we add $2\times4$? Basically I don't understand the reason for adding up $240+8\times9+2\times4$ and then finally the sum is divided by 8?
Thanks very much.