Answer:
A. 
B. 42.2 million
Step-by-step explanation:
Part A:
Given:
Newspapers circulated in year 2004, 
Newspapers circulated in year 2014, 
Let the time
start at the year 2004. So, 
For the year 2014, 
Therefore, linear relationship between newspapers circulated and time passed since 2004 is given as:

Therefore, the equation describing the relationship is: 
Part B:
For the year 2018, 
Plug in 14 for
in the above equation and solve for
. This gives,

Therefore, in the year 2018, the newspaper circulation will be 42.2 million.
8 goes into 153 19 times.
Answer:
31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97
Step-by-step explanation:
I was not sure what number you wanted me to go till but i did prime numbers greater than 30, but within 100...hope this helps!
Answer:
Full question attached below.
Yes, the system of equations on line 4 has the same solution set as the system of equations on line 1
Step-by-step explanation:
There is no difference between the systems of line 1 and 4
1st system
5x + 3y = 14
4x - 2y = -2
4th system
10x + 6y = 28
12x - 6y = -6
In the fourth system, we factor number 2 from the first line, and number 3 from the second line
4th system
2[5x + 3y] = 2[14]
3[4x - 2y] = 3[-2]
If we simplify,
4th system
[5x + 3y] = [14]
[4x - 2y] = [-2]
We get the same system as the 1st
Therefore, the solution is the same.
Table for the question is attached in the picture below :
Answer:
SELECT distinct(TRUCK_ID), WEIGHT from SHIPMENT where WEIGHT < 800 ;
Step-by-step explanation:
The Structured query language (SQL) defined above, returns only the TRUCK_ID and Weight column from the shipment table as they are the only two columns listed after the select keyword. The condition is added using the WHERE keyword on the weight table, this filters the result returned to include only rows where the weight value is less than 800. The distinct keyword used alongside the TRUCK_ID column ensures that a certian TRUCK_ID value isn't returned more than once (Hence, it is used to avoid duplicates).