Homework on Functions - Questions

  • The function give us a result (output) based on how it was modeled and considering the input that we gave to it

  • a) 4 - b) 17 - c) 0

  • F(x) = (x/4) - 5

1 Like
  1. A function is like an “if this than that” statement ready to go. Whatever number you feed the input, the output will feed out the correct result.

a) f(x) = 2x2= 4
b) f(x) = 7+10= 17
c) f(x) = 0x2= 0

  1. f(x) = (x/4) - 5
1 Like
  1. Describe what a function does in your own words
    The function is just a name if the input.

2- A) = 4
B) = 17
C) = 0

  1. f(x)= x/4-5
1 Like

Homework on Functions - Questions

  1. Describe what a function does in your own words

A function takes an input and gives an output based on the formula that the function provides.

  1. 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

A function is that works as a computation which are given as f(x)

4
17
0

x/4-5

1 Like
  1. A function is a computation of series of in & output of numbers in code.
  2. A. 4, B. 17, C. 0
  3. f(x) = (x/4)-5
1 Like

Oh, yes it is, thank you!

Typo:
2. b) f(7) = 17

  1. A function is a computation that takes an input and transforms it in an output according to a predefined rule.
  2. a)4 b)17 c)0
  3. f(x)=(x/4)-5
1 Like
  1. Function take the input, make some calculations and give the output.
  2. a)4, b)17, c)0
  3. f(x/4) - 5
1 Like

Function it is computation with described rules.
f(2)=4
f(7)=17
f(0)=0
f(x)=5-x/4

1 Like
  1. A function is a computation with a set of instructions at input and gives an output.
  2. A) 4 B) 17 C) 0
  3. f(x)= { (x/4)-5}
1 Like
  1. A function is an expression that takes a value that you have and processes it into another value by using a set of defined and designated rules.
  2. 4,17, & 0
1 Like
  1. Describe what a function does in your own words

Performs computation on input and returns an output.

  1. 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) = {

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

}

1 Like
  1. a function is a formula where when given an input you are then given and output that depends on the formula of the function.

a. 4
b.17
c. 0
3. f(x)=x/4-5

1 Like
  1. Describe what a function does in your own words

It is a receipt that provides you an output from an input, following the steps within the function

  1. 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
  1. a function is basically a computation that receives an input and gives out an output.

  2. 4
    17
    0

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

1 Like

Describe what a function does in your own words

Receives input and calculates output

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 determines an output for a given input.

A) 4
B)17
C)1

  1. F(x) = x/4 - 5
1 Like

1). A function relates an input to an output.

2).
A: 4
B: 17
C: 0 (0 is an even number)

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

1 Like