Newton's Method utilizing Mathcad

  • #1
798
1

Homework Statement


I am writing a simple program in Mathcad for Newton's Method. The function is x^3-5*x^2+3*x+4. The root is between 0 and 3, and we want a tolerance of 0.00001. My code is the exact same as a program I made in Matlab that works, but since I am new to Mathcad, I am getting an error that I do not know how to fix.

The error I receive is "This value must be a scalar"; it is referring to my function f(x). Here is the code:

upload_2015-1-21_8-21-53.png
 
  • #2
I don't see why you're making the assignments g(x) ← f and dg(x) ← df. I figure that this is where Mathcad is tripping up because it can't tell at the outset what f is and decides that it's a scalar.

If you get rid of those two assignments and just use f(x) and df(x) inside your function you should be fine.
 
  • Like
Likes sandy.bridge
  • #3
That certainly fixed it! It definitely was redundant and unnecessary. Thanks!

One other question: do you know a way of implementing Boolean OR in Mathcad? I want to remain in a while loop if any of 3 statements are true. This is rather easy in Matlab, but I am finding it difficult in Mathcad. I am uncertain as to why Mathcad did not include this.
 
  • #4
Open the "< ≠ ≥" menu by clicking the icon with the same designation (I have Mathcad 11.2, but presumably the same feature exists in whatever version you are using). You'll find boolean operators there.
 
  • #5
Ah, I didn't realize that the V represented OR. Thanks a bunch!
 

Suggested for: Newton's Method utilizing Mathcad

Replies
9
Views
1K
Replies
2
Views
1K
Replies
1
Views
450
Replies
2
Views
406
Replies
7
Views
705
Replies
10
Views
1K
Replies
15
Views
818
Back
Top