102k views
5 votes
Write an expression for the sequence of operations described below.

divide s by u, add the result to t, then add v to what you have
Do not simplify any part of the expression

1 Answer

5 votes

Explanation:

s+u

Add t: You will need to introduce brackets

(s+u) + t

Add v: Introduce another v

((s/u) + t) + v

User Guillaumepotier
by
4.7k points