Answer:
Yes
Explanation:
If the Ajax representative fails to correct the previous statement this can cause misrepresentation.
Answer:
The graph representing the linear inequalities is attached below.
Explanation:
The inequalities given are :
y>x-2 and y<x+1
For tables for values of x and y and get coordinates to plot for both equation.
In the first equation;
y>x-2
y=x-2
y-x = -2
The table will be :
x y
-2 -4
-1 -3
0 -2
1 -1
2 0
The coordinates to plot are : (-2,-4) , (-1,-3), (0,-2), (1,-1) ,(2,0)
Use a dotted line and shade the part right hand side of the line.
Do the same for the second inequality equation and plot then shade the part satisfying the inequality.
The graph attached shows results.
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************