Newton-Raphson method with two x values

  • Thread starter Thread starter LakeMountD
  • Start date Start date
  • Tags Tags
    Method
Click For Summary
SUMMARY

The discussion focuses on applying the Newton-Raphson method to minimize the function f = x1^2 + x2^2 + 10x1 + 20x2 + 25. The user successfully splits the problem into two separate functions: f(x1) = x1^2 + 10x1 + 5 and f(x2) = x2^2 + 20x2 + 25. By utilizing the Newton-Raphson method for each function independently, the user confirms that this approach is valid due to the absence of cross-terms involving both x1 and x2 in the original function.

PREREQUISITES
  • Understanding of the Newton-Raphson method
  • Knowledge of multivariable calculus
  • Familiarity with quadratic functions
  • Ability to perform differentiation
NEXT STEPS
  • Study the application of the Newton-Raphson method in multivariable optimization
  • Learn about gradient descent as an alternative optimization technique
  • Explore the implications of Hessian matrices in multivariable calculus
  • Investigate convergence criteria for iterative methods like Newton-Raphson
USEFUL FOR

Mathematicians, engineers, and data scientists who are interested in optimization techniques, particularly those working with multivariable functions and numerical methods.

LakeMountD
Messages
59
Reaction score
0
Find the value of x1 and x2 that minimize the function f= x1^2 + x2^2 + 10x1 +20x2 +25 . This isn't that difficult of a problem if there was only 1 x value. But how do I do it when it is using x1 and x2?
 
Physics news on Phys.org
Okay I think I might have figured something out. I split the problem up to be f(x1)=x1^2+10x1+5 and f(x2)=x2^2+20x2+25 and then do Newton-raphson for each of those functions. Is this correct?
 
In this case, it's going to pretty easy since there aren't any terms in the expression for [itex]f(x_1,x_2)[/itex] that involve both [itex]x_1[/itex] and [itex]x_2[/itex] so you can indeed do this one by finding the minimums with respect to [itex]x_1[/itex] and [itex]x_2[/itex].
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
5K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
8
Views
2K
Replies
5
Views
2K