Starter quiz

  • What expression represents the following: I start with a number (n), subtract 3, and then double the result.
    • '2(n-3)' ✓
  • What expression represents the following: I take a number (n), multiply it by 5, and then add 10 to the product.
    • '5n + 10' ✓
  • What expression represents the following: I triple a number (n) and then subtract 4 from it.
    • '3n - 4' ✓
  • Which expression represents the following: I square a number (n), then subtract twice the number from the square.
    • n^2 - n
    • n^2 - 2n  ✓
    • n^2 - 2n^2
  • Which expression represents the following: I take a number (n), halve it, and then add the square of the number to this result.
    • (\frac{n}{2})^2 + n
    • \frac{n}{2} + n^2  ✓
    • \frac{n^2}{2} + n
  • A rectangle has side lengths of 3x + 5 and 4x - 3. Write an expression for the perimeter of the shape.
    • '14x + 4' ✓
+