-2/(a+b)
Explanation: you are dividing negative two by the sum of a and b so you would put a+b in parentheses as the denominator and then put -2 as the numerator
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:
Na20+H20 -> 2NaOH
Step-by-step explanation:
Answer:
We have that the sum of two numbers is 9
this can be written as:
x + y = 9
where x is the larger number.
Now we want to write:
"the difference between one more than the larger number and twice the smaller number"
First, remember that the difference between A and B is:
A - B
Then "the difference between one more than the larger number and twice the smaller number"
is:
"one more than the larger number" = ( x + 1)
"twice the smaller number" = 2*y
the difference between these is:
(x + 1) - 2*y
Now we can simplify:
We know that:
x + y = 9
then:
y = 9 - x
replacing that in the equation:
(x + 1) - 2*y
we would get:
x + 1 - 2*(9 - x)
x + 1 -18 + 2x
(x + 2x) + (1 - 18)
3x - 17
This means that we can write:
"the difference between one more than the larger number and twice the smaller number"
as: 3x - 17
Answer:
Following are the solution to this question:
Step-by-step explanation:
Using formula:

In question (1):

In point a:

In point b:


In question (2):

In point a:

In point b:


The 3 question is incomplete, that's why it can't be solved.