The equation of line parallel to
and containing the point(-10,-3) is 
Step-by-step explanation:
We need to write the equation parallel to
and containing the point(-10,-3)
The standard form of point slope equation is:

where m is slope and b is y-intercept
Comparing the given equation
with standard form the slope is m= -1/5
Since the lines are parallel the slope of new line is m = -1/5
Now finding b (y-intercept)
Using slope m=-1/5 and point (-10,-3)

So, b= -5 and slope = -1/5 the equation of new line is:

So, The equation of line parallel to
and containing the point(-10,-3) is 
Keywords: Point Slope form
Learn more about point slope form at:
#learnwithBrainly
The answer is: 4 because when you put the mixed number in an improper fraction it is 11/3 and 11 divided by 3= 3.67, so you will need to round it to the nearest whole number which is 4
The area of any circle is (pi) · (radius)² .
The radius is 1/2 of the diameter.
For your circle, the radius is 1/2 of 14 inches = 7 inches,
and the area is
(pi) · (7 inches)²
= (pi) · (49 square inches)
= 153.9 square inches (rounded)
A. Their signs are the same.
b. one is negative, the other is positive
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()