View on GitHub

Computer Architecture and Operating Systems

Course taught at Faculty of Computer Science of Higher School of Economics

Variants: Group 211

NOTE: Value range for testing is 0 <= x <= 12.

HINT: You can use Python to calculate correct results of f(x) to be used for checking.

  1. Function f(x) that handles cases:

     f(x) = -4**x + 7 if x < 5
     f(x) = 3 * x**6 + 6 * x**3 + 5 * x if x >= 5
     f(x) = 5 if x == 6
     f(x) = -3 * x - 9 if x > 10
    
  2. Function f(x) that handles cases:

     f(x) = 3 * x + 7 if x < 3
     f(x) = 9 * x**3 - 9 * x**2 - 5 * x if x >= 3
     f(x) = 2 if x == 6
     f(x) = 4**x - 4 if x > 9
    
  3. Function f(x) that handles cases:

     f(x) = 7 * x**7 + 7 * x**4 - 3 * x if x < 3
     f(x) = 2 if x >= 3
     f(x) = -5 * x - 9 if x == 5
     f(x) = 2**x - 7 if x > 7
    
  4. Function f(x) that handles cases:

     f(x) = -7 * x - 9 if x < 4
     f(x) = 4**x + 3 if x >= 4
     f(x) = 2 * x**6 - 7 * x**3 + 8 * x if x == 5
     f(x) = -3 if x > 9
    
  5. Function f(x) that handles cases:

     f(x) = -5 * x - 9 if x < 3
     f(x) = -4 if x >= 3
     f(x) = 4 * x**7 + 3 * x**5 - 3 * x if x == 5
     f(x) = -4**x + 6 if x > 7
    
  6. Function f(x) that handles cases:

     f(x) = 6 if x < 4
     f(x) = -2**x + 5 if x >= 4
     f(x) = -3 * x - 9 if x == 6
     f(x) = 5 * x**7 + 2 * x**2 - 2 * x if x > 10
    
  7. Function f(x) that handles cases:

     f(x) = 3**x - 9 if x < 2
     f(x) = 2 * x**4 + 5 * x**2 - 5 * x if x >= 2
     f(x) = 8 if x == 6
     f(x) = -4 * x - 9 if x > 9
    
  8. Function f(x) that handles cases:

     f(x) = -2**x + 7 if x < 6
     f(x) = -3 if x >= 6
     f(x) = 8 * x - 6 if x == 7
     f(x) = 8 * x**6 + 4 * x**3 - 8 * x if x > 9
    
  9. Function f(x) that handles cases:

     f(x) = 3**x + 7 if x < 2
     f(x) = 2 * x - 2 if x >= 2
     f(x) = 3 * x**4 + 4 * x**2 + 3 * x if x == 3
     f(x) = -5 if x > 8
    
  10. Function f(x) that handles cases:

    f(x) = 5 * x + 5 if x < 5
    f(x) = 9 * x**5 + 2 * x**4 + 4 * x if x >= 5
    f(x) = -8 if x == 7
    f(x) = 2**x - 6 if x > 8
    
  11. Function f(x) that handles cases:

    f(x) = -2**x - 7 if x < 3
    f(x) = -6 * x + 4 if x >= 3
    f(x) = 5 if x == 7
    f(x) = 3 * x**5 - 7 * x**3 + 4 * x if x > 8
    
  12. Function f(x) that handles cases:

    f(x) = -3**x + 2 if x < 2
    f(x) = 8 if x >= 2
    f(x) = 5 * x + 7 if x == 5
    f(x) = 2 * x**4 + 6 * x**2 + 5 * x if x > 6
    
  13. Function f(x) that handles cases:

    f(x) = -2**x - 8 if x < 3
    f(x) = 6 * x**7 - 2 * x**3 - 8 * x if x >= 3
    f(x) = 3 * x + 3 if x == 4
    f(x) = -9 if x > 7
    
  14. Function f(x) that handles cases:

    f(x) = -4**x + 7 if x < 2
    f(x) = 4 * x**5 + 5 * x**4 - 6 * x if x >= 2
    f(x) = 6 * x + 6 if x == 7
    f(x) = 7 if x > 10
    
  15. Function f(x) that handles cases:

    f(x) = 7 * x**7 - 4 * x**6 + 3 * x if x < 2
    f(x) = -8 if x >= 2
    f(x) = 3 * x - 8 if x == 3
    f(x) = -3**x - 9 if x > 10
    
  16. Function f(x) that handles cases:

    f(x) = -3**x + 4 if x < 4
    f(x) = -2 if x >= 4
    f(x) = 5 * x**7 + 3 * x**5 + 7 * x if x == 8
    f(x) = 5 * x + 6 if x > 10
    
  17. Function f(x) that handles cases:

    f(x) = 4**x - 3 if x < 5
    f(x) = -7 * x - 9 if x >= 5
    f(x) = 6 if x == 6
    f(x) = 7 * x**6 + 7 * x**4 - 7 * x if x > 8
    
  18. Function f(x) that handles cases:

    f(x) = -8 if x < 5
    f(x) = -4**x + 8 if x >= 5
    f(x) = 3 * x**7 + 2 * x**5 - 3 * x if x == 7
    f(x) = 2 * x - 7 if x > 10
    
  19. Function f(x) that handles cases:

    f(x) = 5 * x**6 - 3 * x**4 - 2 * x if x < 2
    f(x) = 2 * x - 2 if x >= 2
    f(x) = 5 if x == 7
    f(x) = 4**x + 3 if x > 8
    
  20. Function f(x) that handles cases:

    f(x) = 3 * x**6 - 5 * x**4 - 4 * x if x < 3
    f(x) = -4 * x + 7 if x >= 3
    f(x) = -3 if x == 6
    f(x) = 4**x - 9 if x > 10
    
  21. Function f(x) that handles cases:

    f(x) = 8 * x**4 + 8 * x**3 + 8 * x if x < 5
    f(x) = -6 * x - 4 if x >= 5
    f(x) = -8 if x == 7
    f(x) = -5**x + 3 if x > 8
    
  22. Function f(x) that handles cases:

    f(x) = 2**x - 3 if x < 3
    f(x) = -9 if x >= 3
    f(x) = -2 * x - 2 if x == 6
    f(x) = 3 * x**7 + 7 * x**5 + 6 * x if x > 10
    
  23. Function f(x) that handles cases:

    f(x) = -4**x - 9 if x < 2
    f(x) = 4 if x >= 2
    f(x) = 4 * x**7 + 8 * x**3 + 4 * x if x == 4
    f(x) = 6 * x + 8 if x > 10
    
  24. Function f(x) that handles cases:

    f(x) = 7 * x**6 - 8 * x**4 - 5 * x if x < 3
    f(x) = 4**x - 4 if x >= 3
    f(x) = 3 if x == 6
    f(x) = -7 * x - 4 if x > 9