Homework on Functions - Questions

what happened to answer c?:thinking:

1 Like

hmmm now that is a good question hahaha 0 does equal nothing tho so it’s kinda right :wink:

1 Like
  1. A function performs the same operation across other similar inputs.

  2. a) = 4
    b) = 17
    c) = 0

  3. f(x) = (x/4) - 5

1 Like
  1. A function is the computation of an input giving you an output.

  2. a). f(2) = 4
    b). f(7) = 17
    c). f(0) = 0

  3. f(x) = (x/4) - 5

1 Like

1: A function accepts input, operates on that input and produces output
2: a) 4 b) 17 c) 0
3: f(x) { return (x / 4) - 5 }

1 Like

Hi,

Are you still taking the course?

1 Like
  1. telling something to do something to get a certain outcome - (imput - Output)
  2. A) f(2) = 4
    B) f(7) = 17
    C) f(0) = 0

Bonus:

  • f(-1) = 9
  • f(-2) = 4
  1. f(x) = {(x/4) -5}
    e.g…
    f(20) = 0

:grin:

1 Like
  1. A function takes an input and uses a calculation to produce an output.

  2. a. f(2) = 4
    b. f(7) = 17
    c.) f(0)= 0

3.). f(x)= (x/4) -5

3 Likes
  1. A function is a mathematical computation and these computations contain an input.

  2. a) f(2) = 4

    b) f(7) = 17

    c) f(0) = 0

  3. f-5 = { }
    f (x) = (x/4)-5

1 Like
  1. A function takes an input, does a calculation to it, and returns an output.

  2. a. f(2) = 2^2 = 4
    f(10) = 7+10=17
    f(0) = 0^2 = 0

  3. f(x) = (x/4) - 5

1 Like
1. Describe what a function does in your own words: does something with an input and gives an output

2. Calculate the output of the following function

f(x) = {

x^2 if x is even

x+10 if x is odd

}
What will be the output for the following inputs?

a) f(2) = 4

b) f(7) = 17

c) f(0) = 0

Write the definition of a function f that takes an input x, divides it by four and then outputs that result subtracted by 5.

f(x) = (X/4) - 5

1 Like
  1. A function is a formula that produces a result, output, based on the input and the directive of the formula.

  2. a) 4 b) 17 c) 0

  3. f(x)=x/4-5

1 Like
  1. a function is a mathematical rule that connects inputs and outputs

A) 4
B) 17
C) 0

  1. f(x)= (x/4) - 5
1 Like
  1. Describe what a function does in your own words
    A function is a calculation formula. You give it input, you get output.

  2. Calculate the output of the following function

f(x) = {x^2 if x is even x+10 if x is odd}

What will be the output for the following inputs?

  • a) f(2) = 4
  • b) f(7) = 17
  • c) f(0) = 0
  1. Write the definition of a function f that takes an input x, divides it by four and then outputs that result subtracted by 5.

f(x) = x/4-5

1 Like

Homework on Functions - Questions

  1. Describe what a function does in your own words

Answer: Function is a mathematical formula that has an input and output.

  1. Calculate the output of the following function
    a) f(x)=4
    b) f(x)= 17
    c) f(x)= 0

  2. f(x)= (x/4)-5

1 Like

Homework on Functions - Questions

  1. Describe what a function does in your own words. A function is a computation, it does something. Input to output.
  2. Calculate the output of the following function
x^2 if x is even - f(2) = 4
x+10 if x is odd - f(3) = 3 + 10 = 13

What will be the output for the following inputs?

* a) f(2) = 4 
* b) f(7) = 14
* c) f(0) = 0 

3. Write the definition of a function f that takes an input x, divides it by four and then outputs that result subtracted by 5.

f(x)/4= x-5
1 Like
  1. A function is an equation in which you enter an input and receive an output.
  2. a. 4 b. 17 c. 0
1 Like
  1. A function is a mathematical equation with an input and an output.

  2. f(2) = 4
    f(7) = 17
    f(0) = 0

  3. f(x) = (x/4) - 5

1 Like
  1. A function performs mathematical operations on a given input to produce an output.
  • a) f(2) = 4
  • b) f(7) = 17
  • c) f(0) = 0
  1. f(x) = (x/4) -5
1 Like
  1. Functions are mathematical equations that take procedures and preforms calculations creating outputs.

  2. a. 4
    b.17
    c.0

3, f(x)= (x/4)-5

1 Like