Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Get immediate and reliable solutions to your questions from a community of experienced experts on our Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.


Specified variable a = 3b - c, for b

Sagot :

a = 3b -c         //we move 'b' to left side
a - 3b = - c      // we move 'a' to right side
-3b = -a - c    // we multiply by -1
3b = a + c   // we devide by 3
b = (a + c ) / 3  

other version => b = (1/3)a+ (1/3)c