Can someone help me with these 3 equations | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Can someone help me with these 3 equations

3x3 - 2x2 + 3x - 1 the value of x is x = 0 x = 1 x = -1 expected output is y = -1.0 y = 3.0 y = -9.0

23rd Feb 2022, 2:41 AM
Unknown
Unknown - avatar
2 Respostas
0
y = (3, -2.0, 3.0, -1.0)
17th Apr 2024, 10:12 AM
Nicholas Odhiambo
0
x = 1 x = float(x) y = 3 * x**3 - 2 * x**2 + 3 * x - 1 print("y =", y) Look carefully the 'y' value
1st May 2024, 12:39 AM
Mykhaylo Glukhov
Mykhaylo Glukhov - avatar