Well, let's see. The problem gave you an ordered pair. In other words, you have an 'x' and a 'y' coordinate. All you need to do is put them into the equation.
Step-by-step explanation:
This means that instead of --
-3x - 3y = 125 + 5y = -20
We would have:
-3(-5)-3(-5) = 125(-5) + 5(-5) = -20
From here, you just simplify it into:
30 = -650 = -20
Since the values are not the same, the ANSWER is NO. The ordered pair does not satisfy the following system of equations.
Answer:
Please see explanation for the answer. The code is written in python and is as given below:
Step-by-step explanation:
The solution is obtained on the Python with the following code
import matplotlib.pyplot as plotter
import numpy as npy
x_s = npy.linspace(-5,5,100) #Defining a linear sample space with boundaries as -5 to 5 and 100 as number of samples.
def sigmo(z):return 1/(1 + npy.exp(-z)) #Defining sigmoid function for the f(x).
plotter.plot(x_s, sigmo(x_s))
plotter.plot([-5,5],[.5,.5])
plotter.xlabel("z")
plotter.ylabel("sigmoid(z)")
plotter.show()
Answer:
6, 3
Step-by-step explanation:
Answer:
11
Step-by-step explanation:
We need 60 dollars, we have 16
60-16 = 44
We need to earn 44 more dollars
At 4 dollars a pound
The money earned = lbs * dollars per pound
44 = lbs *4
Divide each side by 4
44/4 = lbs
11 = lbs
We must sell 11 more lbs
Answer:

Step-by-step explanation:

__
The applicable rules of logarithms are ...
log(ab) = log(a) +log(b)
log(a/b) = log(a) -log(b)
log(a^b) = b·log(a)