Need help rewriting expression

upinflamezzz

New member
Joined
Apr 28, 2022
Messages
4
Commission = (Sales - (Cost*(1-Load)))/3 I need to rewrite for what Load equals. Thanks for any help
 
Does it make it any easier if we use single letter variable names and LaTeX typesetting : [imath]M= \frac{S-C*(1-L)}{3}[/imath] ?
 
Last edited:
Commission = (Sales - (Cost*(1-Load)))/3 I need to rewrite for what Load equals. Thanks for any help
Please show us what you have tried and exactly where you are stuck.

Please follow the rules of posting in this forum, as enunciated at:


Please share your work/thoughts about this problem
 
I got it.

Commission = (((Sales - Cost(1-Load)))/3
3*Commission = Sales - Cost - (Cost*Load)
3*Commission - (Sales - Cost) = - (Cost*Load)
(3*Commission - (Sales - Cost))/ -Cost = Load
 
I got it.

Commission = (((Sales - Cost(1-Load)))/3
3*Commission = Sales - Cost - (Cost*Load)
3*Commission - (Sales - Cost) = - (Cost*Load)
(3*Commission - (Sales - Cost))/ -Cost = Load
There is a mistake in line 2. It should be:

3*Commission = Sales - Cost + (Cost*Load)
 
Correct. My first line should have been

Commission = (((Sales - Cost(1+Load)))/3
If that is correct then your original post was incorrect.

In that case - your answer is correct. But you should multiply the LeftHandSide by [(-1)/(-1)] - so that you do not have the negative sign in the denominator.
 
Top