Solve the equation g(x)= 3x2 −2x−4=0. c) Find the roots g(x) d) The value at g(-2) if u could help me with this one?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Solve the equation g(x)= 3x2 −2x−4=0.
c) Find the roots g(x)
d) The value at g(-2)
if u could help me with this one?
0 comentarios
Respuestas (1)
Walter Roberson
el 13 de Jun. de 2022
syms g(x)
g(x) = 3*x^2 - 2*x - 4
fplot([g, 0], [-5 5])
xticks(-5:5)
Where the two lines cross are the roots.
3 comentarios
Walter Roberson
el 13 de Jun. de 2022
After the g(x) definition I posted above
g(-2)
will work.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!