Some questions from a numerical analysis book

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
15 replies · 2K views
awholenumber
Messages
200
Reaction score
10
Last edited by a moderator:
Mathematics news on Phys.org
rosekidcute said:
Are all these called root finding algorithms? All of it ?
This is a 300 page book. You will have to specify what you are talking about.
 
for example , for a polynomial ,

a solution of a polynomial equation is also called a root of the polynomial .

a value for the variable that makes the polynomial zero

if you can't find an exact expression, then you can use numerical methods to get approximations .

with numerical methods you can choose how close to zero you want, and it will give you a value that's at least that close

Are we trying to find the roots with all these types of numerical methods ? or is it called finding something else ?
 
Generally speaking, a numerical algorithm that allows you to solve a problem of the type ##\mathbf{F}(\mathbf{x}) = 0## is indeed called a root-finding algorithm.
 
So what are we trying to do when we use numerical differentiation ? I don't think its called root finding ? is it ?
 
rosekidcute said:
So what are we trying to do when we use numerical differentiation ? I don't think its called root finding ? is it ?
No, it is called numerical differentiation.
 
  • Like
Likes   Reactions: BvU
A book on Numerical Analysis typically discusses techniques for solving equations, finding derivatives numerically, and calculating integrals numerically. It might also discuss techniques for finding matrix inverses, finding eigenvalues and eigenvectors of matrices, and other topics.
 
  • Like
Likes   Reactions: awholenumber and fresh_42
Really, though, @rosiekidcute, if you're struggling with basic concepts like fractions, factoring, and trig (as in recent threads), it's not very likely that you will understand topics in numerical analysis or partial differential equation.
 
I keep thinking of naturally occurring things whenever i think of derivatives , differential equations and partial differential equations .Like electricity , magnetic field .
I am always like if there is a derivative in a differential equation , how could have that happened ? what could have made it like that . Maybe i should stop thinking about it that way .Its just some rules , Maybe its my lack of experience .
 
rosekidcute said:
I keep thinking of naturally occurring things whenever i think of derivatives , differential equations and partial differential equations .Like electricity , magnetic field .
I am always like if there is a derivative in a differential equation , how could have that happened ? what could have made it like that .
No need to invoke electricity or magnetism. Consider Newton's second law for an object with a fixed mass: F=ma. Force equals mass times acceleration.

That acceleration is a the first derivative of velocity. ##F=m \frac{dv}{dt}##.
That velocity is the first derivative of position. ##F = m \frac{d^2x}{dt^2}##.
If we are dealing with a mass on a spring, that force is also given by Hooke's Law: F = -kx.
So we have ##-kx = m \frac{d^2x}{dt^2}##

That's a differential equation. (A second order homogeneous linear differential equation. There is a straightforward crank-and-grind approach to solving those).
 
Last edited:
Thanks ,

function.png


Same things right ?
 
Right , sorry about that .