Fill in the output that goes with a given input based on the two rules below.

If input is odd:
input
Input Output Arrow
subtract 5
Input Output Arrow
output
If input is even:
input
Input Output Arrow
divide by 3
Input Output Arrow
output
Input Output
11
12
13
6

1 answer

Let's apply the rules to fill in the outputs for the given inputs:

  1. For 11 (odd):

    • Rule: Subtract 5
    • Output: 11 - 5 = 6
  2. For 12 (even):

    • Rule: Divide by 3
    • Output: 12 / 3 = 4
  3. For 13 (odd):

    • Rule: Subtract 5
    • Output: 13 - 5 = 8
  4. For 6 (even):

    • Rule: Divide by 3
    • Output: 6 / 3 = 2

Now, we fill in the table:

| Input | Output | |-------|--------| | 11 | 6 | | 12 | 4 | | 13 | 8 | | 6 | 2 |