Skip to the content.

Big Idea 3 Unit 3

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 MOD b (MOD is %)
  • Floor division(rounds to the nearest whole number):
    • In python a // b
    • Javascript doesn’t have an operator so use Math.floor(a / b)
  • Math is in order of operations

Click this link to see our page: Link to 3.3