Answer:
y
=
4
(
1
2
)
x
Explanation:
An exponential function is in the general form
y
=
a
(
b
)
x
We know the points
(
−
1
,
8
)
and
(
1
,
2
)
, so the following are true:
8
=
a
(
b
−
1
)
=
a
b
2
=
a
(
b
1
)
=
a
b
Multiply both sides of the first equation by
b
to find that
8
b
=
a
Plug this into the second equation and solve for
b
:
2
=
(
8
b
)
b
2
=
8
b
2
b
2
=
1
4
b
=
±
1
2
Two equations seem to be possible here. Plug both values of
b
into the either equation to find
a
. I'll use the second equation for simpler algebra.
If
b
=
1
2
:
2
=
a
(
1
2
)
a
=
4
Giving us the equation:
y
=
4
(
1
2
)
x
If
b
=
−
1
2
:
2
=
a
(
−
1
2
)
a
=
−
4
Giving us the equation:
y
=
−
4
(
−
1
2
)
x
However! In an exponential function,
b
>
0
, otherwise many issues arise when trying to graph the function.
The only valid function is
y
=
4
(
1
2
)
x
Answer:
3 inches per hour
Step-by-step explanation:
divide the number on the y axis (i'm assuming it's inches of snow) by the number on the x axis (i'm assuming its hours)
by doing this you will get 3 inches per hour
Answer:
4.1
Step-by-step explanation:
Answer:
I guess that we have the linear equation:
y = 32*x
Where y is the profit, and x is the number of games sold.
Then the first step may be doing a table.
Give x different values, then find the value of y.
if x = 0
y = 32*0 = 0
if x = 1, y = 32*1 = 32
if x = 2, y = 2*32 = 64
Then the points:
(0,0) (1,32) and (2, 64) belong to this line, now we need to conect them with a straigth line and its ready.
The graph will be:
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get