Y>2 is the 1st one. x>-4 is the 3rd one. Write the inequality. 1. 3, 2. 3
5x+15-6+7x
15-6= 9.
5=7= 12
12x+9 .
If you want to solve the equation -5 - (15 * y - 1) = 2 * (7 * y - 16) - y, you can calculate this using the following steps:
-5 - (15 * y - 1) = 2 * (7 * y - 16) - y
-5 - 15 * y + 1 = 14 * y - 32 - y
-5 + 1 + 32 = 14 * y - y + 15 * y
28 = 28 * y /28
y = 1
The result is 1.
Step-by-step explanation:
step 1. Where is the original equation? let's assume it is y = x^2
step 2. to shift to the right 3 places replace x with x - 3 and to shift 4 down subtract 4 from the equation
step 3. y = (x - 3)^2 - 4.
<span>import math
def calculateDistance(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
distance = calculateDistance(2,4,6,8)
print distance</span>