Answer:
x=8y/3-4
Step-by-step explanation:
What we have to do to solve for X into re arrange the equation so that X is by itself on one side of the equation. To start we will divide both sides by 3/8 to move it away from the X side and we get
8y/3=x+4 then we will subtract both sides by 4 to get x all by itself
8y/3-4=x
I hope this helps and please don't hesitate to ask if there is anything still unclear!
<span>The
value of the determinant of a 2x2 matrix is the product of the top-left
and bottom-right terms minus the product of the top-right and
bottom-left terms.
The value of the determinant of a 2x2 matrix is the product of the top-left and bottom-right terms minus the product of the top-right and bottom-left terms.
= [ (1)(-3)] - [ (7)(0) ]
= -3 - 0
= -3
Therefore, the determinant is -3.
Hope this helps!</span>
Answer:
The inequality for this is 12.5x + 55 ≥ 160
and the amount of visits they need for free movie tickets is 8 visits
Step-by-step explanation:
if you subtract both sides by 55, you'll get
12.5x ≥ 105
and if you divide both sides by 12.5, you'll get 8.4, or 8
Answer:
min = a_1
for i:= 2 to n:
if
< min then min = 
return min
Step-by-step explanation:
We call the algorithm "minimum" and a list of natural numbers 
So lets first set the minimum to 
min = a_1
now we want to check all the other numbers.
We can use a simple for loop, to find the minimum
min = a_1
for i:= 2 to n:
if
< min then min = 
return min