Study

2.2. Constructing expressions

  •   0%
  •  0     0     0

  • d. triples the number then adds 20
    3y + 20
  • f. divides 50 by the number
    50 / y
  • h. takes the square root of the number then adds 2
    sqrt(y) + 2
  • e. squares the number then subtracts 7
    y^2 - 7
  • m. halves the number then adds 5
    y / 2 + 5
  • a. adds 15 to the number
    y + 15
  • j. cube roots the number then multiplies the result by 6
    6∛y
  • i. cubes the number then subtracts 10
    y^3 - 10
  • v. cubes the number then adds twice the number
    y^3 + 2y
  • p. multiplies the number by 5 then subtracts 40
    5y - 40
  • r. multiplies the number by itself then triples the result
    3y^2
  • t. square roots the number then multiplies the result by 10
    10√y
  • k. subtracts 9 from the number squares the result then adds 12
    (y - 9)^2 + 12
  • q. divides the number by 8 then subtracts 3
    y / 8 - 3
  • u. subtracts 15 from the number then divides by 5
    (y - 15) / 5
  • s. adds 4 to the number then cubes the result
    (y + 4)^3
  • l. triples the number cubes the result then subtracts 200
    (3y)^3 - 200
  • c. doubles the number then subtracts 5
    2y - 5
  • b. subtracts 8 from the number
    y - 8
  • o. squares the number then adds 25
    y^2 + 25
  • g. multiplies the number by 4 then divides the result by 3
    4y / 3
  • n. subtracts 12 from the number then doubles the result
    2(y - 12)