Answer:
Explanation:
The problem statement gives two relations between numbers of servers and their total RAM. Those can be used to find the RAM each size server has.
__
setup
Let L and S represent the number of GB of ram held by a large server and a small server, respectively.
3L +2S = 96 . . . . . . total RAM when all are on-line
2L +1S = 60 . . . . . . after loss of one server of each type
solution
Subtracting the first equation from twice the second, we have ...
2(2L +S) -(3L +2S) = 2(60) -(96)
L = 24 . . . . . . . simplify
S = 60 -2L = 60 -48 = 12 . . . . use the second equation to find S
A large server has 24GB of RAM; a small server has 12GB.