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
Agata [3.3K]
2 years ago
12

Slick Slack is a downloadable app that can be used to automatically generate excuses for being late to work based on the weather

, traffic conditions, and the employer's line of business. One week after its release, 6,040 copies of Slick Slack were downloaded. After 5 weeks, 13,090 copies had been downloaded. Let x represent the number of weeks since Slick Slack was released, and y represent the number of copies that had been downloaded. Use the marginal change and the fact that 1 week after its release 5840 copies of Slick Slack were downloaded to determine the y intercept in the equation y = a + bx.
a) (x,y) =____.
b) write the equation in the form y = a + bx for the number of copies downloaded x weeks after its release.
Mathematics
1 answer:
Greeley [361]2 years ago
7 0

Answer:

(x_1,y_1) = (1,5840)

(x_2,y_2) = (2,13090)

y = 1812.5x + 4027.5

y_0 = 4027.5 --- y intercept

Step-by-step explanation:

Given:

x = weeks; y = copies

The right parameters are:

After 1 week, 5840 copies were downloaded

After 5 weeks, 13090 copies were downloaded

So, the (x,y) forms are:

(x_1,y_1) = (1,5840)

(x_2,y_2) = (5,13090)

Next, we calculate the slope (m) using:

m = \frac{y_2 - y_1}{x_2 - x_1}

m = \frac{13090 - 5840}{5 - 1}

m = \frac{7250}{4}

m = 1812.5

The equation is then calculated using:

y = m(x - x_1) + y_1

y = 1812.5(x - 1) + 5840

y = 1812.5x - 1812.5 + 5840

y = 1812.5x + 4027.5

To calculate the y intercept, substitute 0 for x

y_0 = 1812.5*0 + 4027.5

y_0 = 0 + 4027.5

y_0 = 4027.5

You might be interested in
Are the equations – 2x = 10 and -5x = 25 equivalent? Explain
Dahasolnce [82]

Answer:NO

Step-by-step explanation:

7 0
3 years ago
Read 2 more answers
Solve for x in the literal equation -20=xy +z.​
erastovalidia [21]

Answer:

-(20+z)/y = x

Step-by-step explanation:

-20=xy +z

Subtract z from each side

-20 -z = xy+z-z

-20 -z = xy

Divide each side by y

(-20 -z)/y = xy/y

Factor out a negative

-(20+z)/y = x

5 0
3 years ago
The volume of a​ cone-shaped hole is 50 pi ft cubed . If the hole is 6 ft​ deep, what is the radius of the​ hole?
True [87]

Answer:

r = 5

Step-by-step explanation:

The formula for volume of a cone is \pi r^2*\frac{h}{3}

h = 6

V = 50π

2\pi r^2=50\pi

r = 5

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
PLEASE HELP<br> ME ANSWER THESE I DOMT UNDERSTAND THEM... PLEASE AND THANK YOU
insens350 [35]

Answer:

Step-by-step explanation:

3\frac{3}{5ax_{3} }

5 0
3 years ago
Other questions:
  • Give the equation of the line that is parallel to y=-3x+1 and goes through (-5,-6)
    11·1 answer
  • Using the coordinates of two points (84, 80) and (74, 65), determine the slope of the line of best fit.
    12·2 answers
  • Your friend is 1.2 times taller than you. Your friend is 64.5 inches tall. How tall are you?
    7·2 answers
  • Whats one and half times 16
    15·2 answers
  • A computer company's stock costs $122 at the start of the day. At the end of the day it costs $93. By what amount did the stock'
    6·1 answer
  • Is it a function and what is the Domain and the Range
    9·2 answers
  • If the volume of a cone with the same height as a cylinder equals the volume of the cylinder, the equation for the radius of con
    8·1 answer
  • No. 7 help me Whoever answer i will brainly you. You will got 15 points
    15·1 answer
  • Can someone help me with this?​
    5·1 answer
  • Find the inequality represented by the graph.
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!