Skip to the content.

Big Idea 3 Unit 3

Summary

My group taught this unit. This one was about mathematical operators.

  • Addition: a + b
  • Subtraction: a - b
  • Multiplication: a * b
  • Division: a / b
  • Exponents: a ** b
  • Modulus (remainder of a / b): a % b (written as MOD in math)
  • Floor Division (rounds down to nearest whole number):
    • In Python: a // b
    • In JavaScript: Math.floor(a / b)

Math follows the order of operations (PEMDAS).

Click this link to see our page: Link to 3.3