Since the lines have the same slopes, hence they are parallel lines
<h3>How to determine the relationship between lines</h3>
We can determine the relations by knowing the slopes of the line
For the line with coordinates (9, –5) and (5, –2)
Slope = -2+5/5-9
Slope = -3/4
For the line with coordinates (–4, –2) and (–8, 1)
Slope = 1+2/-8+4
Slope = -3/4
Since the lines have the same slopes, hence they are parallel lines
Learn more on parallel lines here: brainly.com/question/16742265
#SPJ1
<span>contiguous subsequence of a list S is a subsequence made up of consecutive elements of S. For instance, if S is 5; 15;-30; 10;-5; 40; 10; then 15;-30; 10 is a contiguous subsequence but 5; 15; 40 is not. Give a linear-time algorithm for the following task: Input: A list of numbers, a1; a2; : : : ; an. Output: The contiguous subsequence of maximum sum (a subsequence of length zero has sum zero).
For the preceding example, the answer would be 10;-5; 40; 10, with a sum of 55. (Hint: For each j =1; 2; : : : ; ng, consider contiguous subsequences ending exactly at position j.)
Here is my solution in Python 3.
Notes:
* If more than one subset equal the maximum value, only the first is returned.
* The manner of inputting the list was not specified. The list is hardcoded.
* The output was not formatted exactly to specifications.
* The preceding points were not improved upon in order to keep the code simple.
______python 3 -- leading dots are spaces for indentation____
def maxSubSeq(seq):
....max_sum = 0
....max_subseq = []
....for start in range(len(seq)):
........for end in range(start+1, len(seq)+1):
............subseq = seq[start:end]
............total = sum(seq[start:end])
............if total > max_sum:
................max_sum = total
................max_subseq = subseq
....return(max_subseq)
seq=[5, 15, -30, 10, -5, 40, 10]
print(maxSubSeq(seq))
_____Output:_____
[10, -5, 40, 10]
_____</span>
Answer:
A because when the points are plotted they make a straight line.
This is an inequality.
This is what the statement should look like: 
Now, you can actually "properly" reverse these meaning the equality sign changes too. So basically you can mirror them.
The "mirrored" inequality expression would look like this: 
Now just like normal algebra, you can transpose these terms from 1 side to another and so, -8 would transpose to the right hand side and the operation would be the inverse or in this case, addition. The expression would look something like this: 
Add them up and you get:
:D
Answer:
(i only solved for the equation)
27
Step-by-step explanation:
4 1/2= 9/2
9/2*6=27