Ok so I'll demonstrate in programming language python.
import math
def circle():
r = float(input("Enter r: "))
a = math.pi * r ** 2
print("Area of circle with r = {0} is {1
}cm2".format(str(r), str(a))
circle()
Answer:
if you are solving for then it is x = 4/3
Step-by-step explanation:
Answer:
all work is shown and pictured
Answer:
2a + 3b = 5
b = a - 5
Step-by-step explanation:
2a + 3b = 5
b = a - 5
You can write this another way:
2a + 3(a-5) = 5 ( I added the second formula in the first one )
Now you gotta factor out:
2a + 3a - 15 = 5
Here im gonna do plus 15
2a + 3a = 20 ==> 5a = 20
Now if you divide by 5, you get: a = 4
Now you can fill in the second formula again
b = a - 5 (ill fill this in now)
b = 4 - 5 = -1
So, this makes:
a = 4 , b = -1