Answer:
House of representatives=h
United states senate= u
h=4u+35
If u=100:
h=4(100)+35
h=400+35
h=435
Hope this helps :}
Answer:
It is a function
Step-by-step explanation:
Domain: (-5, -6, -2, -1, 4)
Range: (2, 6, 8)
each element of the domain maps to one element of the range, so it is a function.
Answer:
the solution of the system is:
x = 1 and y = 2.
Step-by-step explanation:
I suppose that we want to solve the equation:
-6*x + 6*y = 6
6*x + 3*y = 12
To solve this, we first need to isolate one of the variables in one of the equations.
Let's isolate y in the first equation:
6*y = 6 + 6*x
y = (6 + 6*x)/6
y = 6/6 + (6*x)/6
y = 1 + x
Now we can replace this in the other equation:
6*x + 3*(1 + x) = 12
6*x + 3 + 3*x = 12
9*x + 3 = 12
9*x = 12 - 3 = 9
x = 9/9 = 1
Now that we know that x = 1, we can replace this in the equation "y = 1 + x" to find the value of y.
y = 1 + (1) = 2
Then the solution of the system is:
x = 1 and y = 2.
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