Complete the function table. Then write a rule for the function.

Input
-3
-2
-1
0
1

Output
-
-4
-
-
-1

1 answer

Rule: If the input is negative, output a dash. If the input is 0, output a dash. For any positive input, output the input decreased by 1.

Output = { - if input < 0 or input = 0, input - 1 if input > 0 }

Alternatively:

- If input is less than or equal to -1, output dash.
- If input is greater than or equal to 1, output input - 1.
- If input is 0, output dash.

Output = { - if input ≤ -1, - if input = 0, input - 1 if input ≥ 1 }
Similar Questions
  1. Complete the function table and write the function rule.Input (x) -------------- | 32 | 20 | |-------|-------| | 14 | 2 |
    1. answers icon 24 answers
    1. answers icon 37 answers
  2. Help!! Complete the function table and write the function rule.Input Output 32 20 14 -2 ? -6 -2 -14 -10 ? Please help!
    1. answers icon 41 answers
    1. answers icon 28 answers
more similar questions