translating and solving an equation with values of x and y known

1 Ansicht (letzte 30 Tage)
Griffin Murphy
Griffin Murphy am 21 Sep. 2021
Kommentiert: Star Strider am 21 Sep. 2021
m = 2*x.^3-2*y-sqrt((x-y.^3)./(1+(x-y)./(x.^2+3))+((sin(x./y*pi))+exp(y/3)))
with x=3.53 and y=2.8
i get an answer of 82.3740 - 3.9723i

Antworten (1)

Star Strider
Star Strider am 21 Sep. 2021
In the third term, the square root is of the numerator only, not the entire expression, amd the denominator does not appear to have been coded correctly.
x=3.53
x = 3.5300
y=2.8
y = 2.8000
m = 2*x.^3-2*y-sqrt(x-y.^3)./(1+((x-y)./(x.^2+3)))+sin(x./y*pi)+exp(y/3)
m = 84.1864 - 4.0986i
These changes only slightly change the result.
.
  3 Kommentare
Griffin Murphy
Griffin Murphy am 21 Sep. 2021
the professor said during class that someone got the answer right and i checked with that student to see if my answer was correct and he said no (to the one you gave me)
when I do the equation out regularly i get 83.5908318
Star Strider
Star Strider am 21 Sep. 2021
That change is significant (note the added parentheses in the square root argument).
x=3.53
x = 3.5300
y=2.8
y = 2.8000
m = 2*x.^3-2*y-sqrt((x-y).^3)./(1+((x-y)./(x.^2+3)))+sin(x./y*pi)+exp(y/3)
m = 83.5908
.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by