Here's the real answer. I'm not a math major, but I'm pretty sure I know what I'm talking about.
You can't get 3 equations, because 3 equations with 3 unknowns implies a single answer. This is a case where it's plausible for multiple solutions.
What you
do have is 2 equations and 1
constraint.
The 2 obvious equations:
COWS*10 + SHEEP*3 + CHICKENS*0.5 = 100
COWS + SHEEP + CHICKENS = 100
And the constraint:
COWS, CHICKEN, and SHEEP are positive integers.
This constraint is simply accounting for the real-world scenario where you can't have partial animals, and you can't have negative animals. This is the
only thing you can have for a third "equation".
If you solve the two equations, you get 6 integer results that work, only 1 of which results in all three variables being in the range from 0 to 100 (COWS = 5, SHEEP=1, CHICKENS=94).
Some other results, if you care:
Sheep = 20, Chickens = 80
Sheep = 39, Chickens = 66
Sheep = 58, Chickens = 52
Sheep = 77, Chickens = 38
Sheep = 96, Chickens = 24
Note that all of these result in a negative value (or 0, which isn't possible according to the wording of the problem) for COWS, and hence won't work because it doesn't fit the constraint.
If your teacher tells you that there is a real 3rd equation, he/she is wrong
