1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
notsponge [240]
3 years ago
15

How does the graph move if the h is positive (for instance, h is 4): f(x) =(x-h)2

Mathematics
1 answer:
Dvinal [7]3 years ago
7 0

Answer:

it moves graph left

Step-by-step explanation:

h=left and right

k=up and down

You might be interested in
Find the domain and range of the<br>function y = f(x)= √x-2<br><img src="https://tex.z-dn.net/?f=%20%5Csqrt%7Bx%20-%202%7D%20" i
Over [174]

Answer:

3x-x+2=4

Step-by-step explanation:

The domain of f(x)=2^x would be the x values. This would include all values that you can input as x in order to make this problem work. The domain of a function is usually all real numbers. The range of f(x)=2^x would be the y values. This would include all values that would be the output for the y value. An example of this would be if you used 2 as x then the function would read f(x)=2^2. The y would equal 4 which would be included in the range of this function. To find the domain and range of the inverse you would follow the proper steps to get the inverse of the function which would be x=2^y. The domain would be the x values and the range would be the y values. If you put 4 as x which would be your input for the domain you would get 2^4 = 16 for the y which would be the range.

4 0
2 years ago
Ray has found that his new car gets 31 miles per gallon on the highwayand 26 miles per gallon in the city. He recently drove 285
Mkey [24]

Answer:

Highway = 155\ miles

City = 130\ miles

Step-by-step explanation:

Given

Highway = 31mi/gallon

City = 26mi/gallon

Total\ Miles = 285

Total\ Gallons = 10

Required

Determine the number of miles driven on the highway and on the city

Represent the gallons used on highway with h and on city with c.

So, we have:

c + h = 10 ---- gallons used

and

31h + 26c = 285 --- distance travelled

In the first equation, make c the subject

c = 10 - h

Substitute 10 - h for c in the second equation

31h + 26c = 285

31h + 26(10 - h) = 285

Open bracket

31h + 260 - 26h = 285

Collect like terms

31h - 26h = 285 - 260

5h = 25

Make h the subject

h = \frac{25}{5}

h = 5

Substitute 5 for h in c = 10 - h

c = 10 - 5

c = 5

If on the highway, he travels 31 miles per gallon, then his distance on the highway is:

Highway = 31 * 5

Highway = 155\ miles

If in the highway, he travels 26 miles per gallon, then his distance on the highway is:

City = 26 * 5

City = 130\ miles

8 0
3 years ago
5. The recursive algorithm given below can be used to compute gcd(a, b) where a and b are non-negative integer, not both zero.
s2008m [1.1K]

Implementating the given algorithm in python 3, the greatest common divisors of <em>(</em><em>124</em><em> </em><em>and</em><em> </em><em>244</em><em>)</em><em> </em>and <em>(</em><em>4424</em><em> </em><em>and</em><em> </em><em>2111</em><em>)</em><em> </em>are 4 and 1 respectively.

The program implementation is given below and the output of the sample run is attached.

def gcd(a, b):

<em>#initialize</em><em> </em><em>a</em><em> </em><em>function</em><em> </em><em>named</em><em> </em><em>gcd</em><em> </em><em>which</em><em> </em><em>takes</em><em> </em><em>in</em><em> </em><em>two</em><em> </em><em>parameters</em><em> </em>

if a>b:

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>greater</em><em> </em><em>than</em><em> </em><em>b</em>

return gcd (b, a)

<em>#if</em><em> </em><em>true</em><em> </em><em>interchange</em><em> </em><em>the</em><em> </em><em>Parameters</em><em> </em><em>and</em><em> </em><em>Recall</em><em> </em><em>the</em><em> </em><em>function</em><em> </em>

elif a == 0:

return b

elif a == 1:

return 1

elif((a%2 == 0)and(b%2==0)):

<em>#even</em><em> </em><em>numbers</em><em> </em><em>leave</em><em> </em><em>no</em><em> </em><em>remainder</em><em> </em><em>when</em><em> </em><em>divided</em><em> </em><em>by</em><em> </em><em>2</em><em>,</em><em> </em><em>checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>and</em><em> </em><em>b</em><em> </em><em>are</em><em> </em><em>even</em><em> </em>

return 2 * gcd(a/2, b/2)

elif((a%2 !=0) and (b%2==0)):

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>odd</em><em> </em><em>and</em><em> </em><em>B</em><em> </em><em>is</em><em> </em><em>even</em><em> </em>

return gcd(a, b/2)

else :

return gcd(a, b-a)

<em>#since</em><em> </em><em>it's</em><em> </em><em>a</em><em> </em><em>recursive</em><em> </em><em>function</em><em>,</em><em> </em><em>it</em><em> </em><em>recalls</em><em> </em><em>the function</em><em> </em><em>with </em><em>new</em><em> </em><em>parameters</em><em> </em><em>until</em><em> </em><em>a</em><em> </em><em>certain</em><em> </em><em>condition</em><em> </em><em>is</em><em> </em><em>satisfied</em><em> </em>

print(gcd(124, 244))

print()

<em>#leaves</em><em> </em><em>a</em><em> </em><em>space</em><em> </em><em>after</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>output</em><em> </em>

print(gcd(4424, 2111))

Learn more :brainly.com/question/25506437

6 0
3 years ago
Which is the best estimate for the percent equivalent of 7/15
zzz [600]
An estimate for the percent equivalent of 7/15 is 46% i think
7 0
3 years ago
Read 2 more answers
sarayu went to the movies with her friends. she had a coupon that give each person $2.75 off their ticket. The tickets originall
yaroslaw [1]
11.25 - 2.75 = 8.50
174 - 72 = 102
102 / 8.50 = 12
They bought 12 tickets
4 0
3 years ago
Other questions:
  • What is the domain of f(x) = 34-2?
    5·1 answer
  • PLEASE ANSWER- Which sequence is graphed below?
    13·1 answer
  • HI MATHS EXPERTS PLS ANSWER ASAP PLS I AM DESPERATE
    5·1 answer
  • Help memory withmthiss
    10·2 answers
  • How many solutions does the following system of equations have?
    5·1 answer
  • What is 1/2x-3y-4=0 written in standard form
    14·1 answer
  • Researchers once surveyed students on which superpower they would most like to have. The following two-way table displays data f
    13·2 answers
  • What expression shows the quotient of a n and 4
    11·2 answers
  • If $18\sqrt 8-8\sqrt{18}=\sqrt n, what is n?
    6·1 answer
  • Which two lines must be parallel in the diagram?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!