Ugnius said:
Okay:
Findings: (final temperature) t - ?
Data: t1 - 10dc(Just waters temp)
t2 - 100dc(First ball)
t3 - 40dc (After first ball)
Work:
// We create variables c and mass for equation
CbMb(t2-t1) = CwMw(t3-t1) // water temperature becomes equal to ball because of balance
The first term should be CbMb(t2-t3). Note that it's okay to just use the numbers for the temperatures since they are known values here. So your next line is what I would have expected:
CbMb(100-40) = CwMw(40-10) // i just inserted numbers.
Good. So now you know a relationship between CwMw and CbMb, right? What is
##\frac{CwMw}{CbMb} = ?##
// While we land second ball the heat energy goes to the ball and to the water soo...
CbMb(t2 - t) = CbMc(t3-t) + CwMw(t3-t) // All three temperatures equals and we can also say:
Okay, you have to be careful to get the ordering of the temperatures right so that the signs of the terms will be right. Otherwise you'll end up gaining or losing energy when you should be doing the opposite.
In the expression above the left had side will be positive and represents the energy being "given" by the second ball. We expect t2 to be greater than the final temperature so that t2 - t will be positive. Good.
Now on the right hand side we need to sum up the energies that are received by the other materials. We want these terms to be positive too. But look at the ΔT you've written: t3 - t. t3 is 40C and we expect t to be greater than that. So that would turn both terms on that side of the equation negative. So you need to reverse those variables. Then you'll have:
CbMb(100 - t) = CbMb(t - 40) + CwMw(t - 40)
Now I suggest that you find a way to get rid of the CbMb and CwMw variable groups. Recall from above that you found a relationship between CbMb and CwMw? Suppose you were to divide through the whole equation by CbMb, what would you be left with? Can you make all those unknown parameters disappear?
CbMb(100-t) - CbMb(t-40) = CwMw(t-40) // If you subtract the heat the first ball takes you get the temperature only water gets
// Now we get the first amounts of heat ball gave and water received and divide the differece of balls to that equation
CbMb(100-t) - CbMb(t-40) = CwMw(t-40) / CbMb(100-40) = CwMw(40-10)
When we got this done with all numbers we remove variables
100+40+2t / 60(got this from 100-40) = t-40 / 30(got this from 40-10)
At the finale i got 140+2t / 60 = t-40 / 30 and don't know what's more
I don't understand what you were trying to do in this last part. Perhaps because I don't understand the equation you've written with two equals signs. However, if you can do as I suggested above (clearing away the unknown parameters) then I think you'll be on a more straightforward path to the answer.