Artificial intelligent assistant

Reformat this math formula to not need parenthesis I've got a pricing equation that I am working with for an eCommerce site and I need to reformat this equation to not need parenthesis. Original Formula: > {price} + ({length} * ({ppf} + {jacket_price})) + {c1_price} + {c2_price} + {pe_price} Current Formula: > {length} * ({ppf} + {jacket_price}) + {price} + {c1_price} + {c2_price} + {pe_price} Can this equation be restructured further to not need parenthesis? The important part is making sure that `{ppf}` and `{jacket_price}` are added and then multiplied by `{length}` before being added to all the other values. Sample Data: * Price = 10.00 * Length = 10 * PPF = 0.75 * Jacket Price = 2 * C1 Price = 1 * C2 Price = 3 * PE Price = 4.95

By distributing {length} you get

{length} * {ppf} + {length} * {jacket_price} + {price} + {c1_price} + {c2_price} + {pe_price}

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 686bc12ec630edefcfa744b39bc7a6ca