Answer:
x=4/3
Step-by-step explanation:
2+4=2(x-1) original
6=2(x-1) combine like terms
6=2x-2 multiply x-1 by 2
8=2x add 2 to both sides
4=x divide both sides by 2
Simplifying
4x + -3y = 12
Solving
4x + -3y = 12
Solving for variable 'x'.
Move all terms containing x to the left, all other terms to the right.
Add '3y' to each side of the equation.
4x + -3y + 3y = 12 + 3y
Combine like terms: -3y + 3y = 0
4x + 0 = 12 + 3y
4x = 12 + 3y
Divide each side by '4'.
x = 3 + 0.75y
Simplifying
x = 3 + 0.75y
Step 1: Divide both sides by x.<span><span><span>fx</span>x</span>=<span><span><span>−<span>4.5x</span></span>+7</span>x</span></span><span>f=<span><span><span>−<span>4.5x</span></span>+7</span>x</span></span>Answer:f=<span><span><span>−<span>4.5x</span></span>+7</span><span>x</span></span>
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