Answer:
-7x + 4y = +42
Step-by-step explanation:
Going from point (2, -7) to point (6, 0), x increases by 4 and y increases by 7. Thus, the slope of the line in question is m = 7/4.
Starting from the equation y = mx + b, and subbing (7/4) for m, 6 for x and 0 for y, we get:
0 = (7/4)(6) + b. Then b = 42/4, or 21/2. Thus, we now have y = (7/4)x + 21/2.
We must put this into "standard form." Multiplying all three terms by 4, we get:
4y = 7x + 42. Rearranging these terms to fit the "standard form" equation Ax + By = C, we get:
-7x + 4y = +42
Answer:
25%
Step-by-step explanation:
Probability = # of favorable outcomes / possible outcomes
favorable outcomes is what we want to happen ( throwing more than 3 pitches )
So to find the # of favorable outcomes we must find the frequency that the pitcher throws more than 3 pitches ( note: frequency of throwing 3 pitches is not included)
There are two possible outcomes of the pitcher pitching more than 3 pitches, 4 pitches having a frequency of 15, and 5 pitches which has a frequency of 10
So # of favorable outcomes = 10 + 15 = 25
Now we want to find the # of possible outcomes.
To do so we simply add the frequencies of each possible outcome.
15 + 20 + 40 + 15 + 10 = 100
So there are a total of 100 possible outcomes
Finally to find the probability of the pitcher throwing more than 3 pitches we divide favorable outcomes ( 25) by possible outcomes (100)
Our answer = 25/100 which can be converted into a percentage as 25%
Answer:
28
Step-by-step explanation:
-4×-4=16
3×4=12
12+16=28
The answer to this problem is 28.
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886