Thread Closed

Newton-Raphson in Visual Basic 6

 
Share Thread Thread Tools
Feb28-08, 06:40 PM   #1
 

Newton-Raphson in Visual Basic 6


Hello,
I am progamming in Visual Basic 6, need help to resolve equation using Newton-Raphson
method.
My program is running, but not properly!

Thank you.
 
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Heat-related deaths in Manhattan projected to rise
>> Dire outlook despite global warming 'pause': study
>> Sea level influenced tropical climate during the last ice age
Feb29-08, 07:37 AM   #2
Eus
 
Hi Ho!

I think you should specify your problem in detail first before we can help you.
What kind of problem do you have in resolving the equation? Parsing the equation? Or, what?

Best regards,
Eus
 
Mar1-08, 05:47 AM   #3
 
Hi Benx, today is your lucky day
 
Mar1-08, 10:24 AM   #4
 

Newton-Raphson in Visual Basic 6


basePARTICLE - that code is for SECANT method - and, please no offense, but that's some old code ...

I think what Benx needs right now is exactly what Eus suggested - provide better details of his problem - that way we might be able to offer better help.
 
Mar2-08, 03:15 AM   #5
 
Quote by Eus View Post
Hi Ho!

I think you should specify your problem in detail first before we can help you.
What kind of problem do you have in resolving the equation? Parsing the equation? Or, what?

Best regards,
Eus
Hello,
I do not found the same result as example given in the book, i don't know were is the
failure.
I think is better to see the code. or the algorithms "function and it's derivative".

Best regards,
Benx
 
Mar2-08, 11:46 PM   #6
Eus
 
I think is better to see the code. or the algorithms "function and it's derivative".
So, why didn't you just post the code?

Best regards,
Eus
 
Mar3-08, 02:39 PM   #7
 
Quote by Eus View Post
So, why didn't you just post the code?

Best regards,
Eus
Ok,
I will attach a vbproject to this message.
Attached Files
File Type: zip NewtonIter.zip (2.4 KB, 94 views)
 
Mar3-08, 04:53 PM   #8
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Code:
Attribute VB_Name = "Module1"
 Public Function NewtonExact(Root As Double, TOL As Double, maxIter As Integer, params() As Double) As Integer

  Dim iter As Integer
  Dim diff As Double


  Do
    diff = MyFxMu(Root, params()) / MyDerivMu(Root, params())
    Root = Root - diff
    iter = iter + 1
  Loop While (iter <= maxIter) And (Abs(diff) > TOL)

  If Abs(diff) <= TOL Then
    NewtonExact = True
  Else
    NewtonExact = False
  End If

End Function
Function MyDerivMu(X As Double, params() As Double) As Double
    ' First Derivative f'(µ)
    
    term1 = params(0) / (params(3) - X)
    term2 = params(1) / (params(4) - X)
    term3 = params(2) / (params(5) - X)
       
    MyDerivMu = (2 / (params(3) - X)) * term1 * term1 + (2 / (params(4) - X)) * term2 * term2 + (2 / (params(5) - X)) * term3 * term3
End Function
Function MyFxMu(X As Double, params() As Double) As Double
     'Function f(µ)
    term1 = params(0) / (params(3) - X)
    term2 = params(1) / (params(4) - X)
    term3 = params(2) / (params(5) - X)
    
MyFxMu = (term1 * term1 + term2 * term2 + term3 * term3) - 1
End Function
 
Mar4-08, 11:17 AM   #9
 
Hmm. I didn't see anything technically wrong.

Benx, what are the values for the parameters (ie, your array params) ?

Also, some question to think about:
1. Have you graphed this out to see the behavoir near the root?
2. Do you have a reasonably accurate initial quess to root?
3. Do the iterates ever come close to some of the params values (in which case, we may have trouble due to sinularities?
 
Mar4-08, 01:09 PM   #10
 
Hello,

You can see algorithm, available in Text file of project.
So, I want to know if the algorithm is implemented properly.

Best regards
Benx
 
Mar4-08, 01:15 PM   #11
 
[QUOTE=TheoMcCloskey;1634745]Hmm. I didn't see anything technically wrong.

Benx, what are the values for the parameters (ie, your array params) ?

values are available in procedure Sub NewtonExacte_Click() in form code.
params(0 to 5)

Best regards
Benx
 
Mar5-08, 06:25 AM   #12
 
Like I said, I didn't see anything technically wrong.

I did read the txt file, but the expressions for F and F' are not too clear (looks like the lack of proper use of parens). I can only assume you interpreted the function "F" correctly.

...values are available in procedure Sub NewtonExacte_Click() in form code.
params(0 to 5)...
OK then, as I suggested, plot this function out and you'll see that the root is not where you think it is.

In fact, this function (as you transcribed) is multi-valued and also has a series of three poles (quess where) and may be very ill-form for a Newton search.

Are you sure you interpreted the function "F" correctly?

In fact, your function (as stated) can be manipulated to a search of the zero of a cubic polynomial.

Thus, give the original problem statement a review and make sure you have the correct interpretation of the function "F"
 
Mar5-08, 09:01 PM   #13
Eus
 
Hi Ho!

Your mistake is in the first derivative of your function.

If
[tex]
F(\mu)=\left ( \frac{b1}{a1-\mu} \right )^2 + \left ( \frac{b2}{a2-\mu} \right )^2 + \left ( \frac{b3}{a3-\mu} \right )^2 - 1
[/tex]

Then
[tex]
F'(\mu)=2\left ( \frac{b1}{a1-\mu}\right ) \left ( \frac{a1 - \mu + b1}{(a1 - \mu)^2} \right ) + 2\left ( \frac{b2}{a2-\mu}\right ) \left ( \frac{a2 - \mu + b2}{(a2 - \mu)^2} \right ) + 2\left ( \frac{b3}{a3-\mu}\right ) \left ( \frac{a3 - \mu + b3}{(a3 - \mu)^2} \right )
[/tex]

Since the quotient rule states:
[tex]
\left ( \frac{u}{v} \right )'=\frac{u'\ v - u\ v'}{v^2}
[/tex]

If the initial guess is 0.0, the program should find the root, which is at x = 2.566477775, more or less at its 33th iteration.

Good luck!

Best regards,
Eus
 
Mar6-08, 06:28 AM   #14
 
I need to correct myself --<groan> as I analyzed the wrong F. In my computations, I forgot to square the indiviual terms of [itex]b_i / ({a_i-\mu})[/itex]. Sorry for the confusion.

However, once I correct F, I do see a root near zero (between -.24 and -.22), a large positive pole around 1, and another zero near 2.5 ( this probably being the root Eus discussed).

But, I don't agree with Eus's derivative. If we have a term such as

[tex]g(\mu) = \Large(\frac{b_1}{a_1-\mu}\Large)^2[/tex]

and if I let

[tex]v(\mu)=a_1-\mu[/tex]

then

[tex]g(v(\mu))=\big(\frac{b_1}{v}\big)^2=\Large(b_1v^{-1}\Large)^2=b_1^2 v^{-2}[/tex]

and

[tex]\frac{dg}{d\mu} = \frac{dg}{dv}\frac{dv}{d\mu}= -2\,b_1^2\,v^{-3}\,\frac{dv}{d\mu}= -2\,b_1^2\,v^{-3}\,(-1) = 2\Large(\frac{b_1}{v}\Large)^2\frac{1}{v}[/tex]

Thus, I don't think the derivative is wrong, unless I missing something (which I proved capable of doing many times).

Again, for the given function F and the given derivative, the procedure does converge in abot 5 iterations to the root near zero ( Root = -0.236799382041445 ) but not to the root stated in the problem statement.
 
Mar7-08, 08:32 AM   #15
Eus
 
Hi Ho!

Isn't that if
[tex]
g(\mu)=\left ( \frac{b_{1}}{a_{1}-\mu} \right )^2
[/tex]
and
[tex]
v(\mu)=a_{1}-\mu
[/tex]
then
[tex]
g(v(\mu))=\left ( \frac{b_{1}}{a_{1}-v(\mu)} \right )^2
[/tex]

[tex]
g(v(\mu))=\left ( \frac{b_{1}}{a_{1}-(a_{1}-\mu)} \right )^2
[/tex]

[tex]
g(v(\mu))=\left ( \frac{b_{1}}{a_{1}-a_{1}+\mu} \right )^2
[/tex]

[tex]
g(v(\mu))=\left ( \frac{b_{1}}{\mu} \right )^2
[/tex]
?

Best regards,
Eus
 
Mar18-08, 08:09 PM   #16
 
Quote by TheoMcCloskey View Post
Hmm. I didn't see anything technically wrong.

Benx, what are the values for the parameters (ie, your array params) ?

Also, some question to think about:
1. Have you graphed this out to see the behavoir near the root?
2. Do you have a reasonably accurate initial quess to root?
3. Do the iterates ever come close to some of the params values (in which case, we may have trouble due to sinularities?
Hello,
There is no error on derivative function!
Newton-Raphson is not indicated for this case.
first we compute u_bound an l_bound:

//Get upper bound on mu
u_bound1 = a1-fabs(b1);
u_bound2 = a2-fabs(b2);
u_bound3 = a3-fabs(b3);
u_bound = u_bound1;
if (u_bound2 < u_bound) u_bound=u_bound2;
if (u_bound3 < u_bound) u_bound=u_bound3;
l_bound1 = a1-1.73205080757*fabs(b1);

//get lower bound on mu
l_bound2 = a2-1.73205080757*fabs(b2);
l_bound3 = a3-1.73205080757*fabs(b3);
l_bound = l_bound1;
if (l_bound2 < l_bound) l_bound = l_bound2;
if (l_bound3 < l_bound) l_bound = l_bound3;

Then we use rtsafe algorithm "it's combined Newton-bisection method".
at the third iteration we found:
µ=-0.000109354
 
Mar19-08, 06:32 AM   #17
 
wow ... that's real interesting. Using your values of params

Code:
 params(0) = -0.404279 'b1
  params(1) = -0.767506 'b2
  params(2) = -1.013014 'b3
  params(3) = 0.629811  'a1
  params(4) = 1.000785  'a2
  params(5) = 1.369404  'a3
and your definition of F(x)

Code:
Function MyFxMu(X As Double, params() As Double) As Double
     'Function f(µ)
    term1 = params(0) / (params(3) - X)
    term2 = params(1) / (params(4) - X)
    term3 = params(2) / (params(5) - X)
    
    MyFxMu = (term1 * term1 + term2 * term2 + term3 * term3) - 1
End Function
... I am just not getting your results, either graphically or iteratively. I am getting, as stated before, x aprrox = -.236 both iteratively and graphically.
 
Thread Closed
Thread Tools


Similar Threads for: Newton-Raphson in Visual Basic 6
Thread Forum Replies
Help with Newton-Raphson Method Engineering, Comp Sci, & Technology Homework 9
Newton-Raphson method Calculus & Beyond Homework 6
When Newton Raphson Fails Calculus & Beyond Homework 4
Newton-Raphson question Calculus 11
Newton-Raphson method for y=1/f(x) General Math 2