Answer:
C is the answer
Step-by-step explanation:
The solution of the equation are as follows:
x = 6 and y = -5
<h3 />
<h3>How to solve the system of equation?</h3>
4x + 5y = -1
-5x - 8y = 10
Therefore,
20x + 25y = -5
-20x - 32y = 40
-7y = 35
y = -5
Hence,
4x + 5(-5) = -1
4x - 25 = -1
4x = -1 + 25
4x = 24
x = 24 / 4
x = 6
learn more on equation here:brainly.com/question/14383993
#SPJ1
Answer:
x < - 9
steps:
4x - 6(x + 1) > 12
2x - 3(x + 1) > 6
2x - 3x - 3 > 6
2x - 3x > 6 + 3
-x > 6 + 3
-x > 9
x < -9
hope this helps, have a great day
mark brainliest :)!!
Answer:
take a brain break
Step-by-step explanation:
take a drink from the fridge add some refreshing ice sqeeze the the living heck out ur ju and enjoy some sugur in it and enjoy
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).