Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
9 views
2 pages
New Raphson
Uploaded by
Raji Majeed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download
Save
Save New Raphson For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
9 views
2 pages
New Raphson
Uploaded by
Raji Majeed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save New Raphson For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save New Raphson For Later
You are on page 1
/ 2
Search
Fullscreen
Question 2:Use New -Raphson method to find a root of the function f(x)=e^x-3x^2
to an accuracy of 5 digits, taking the starting value of x as x0=1.0.
Using Python program implementation:
# Raphson Method for solving equations
# An example function whose solution
# is determined using Bisection Method.
# The function is e^x-3x^2
import math
def func( x ):
return math.exp(x)-3*x**2
# Derivative of the above function
# which is e^x-6x
import math
def derivFunc( x ):
return math.exp(x)-6*x
# Function to find the root
def newtonRaphson( x ):
h = func(x) / derivFunc(x)
while abs(h) >= 0.00001:
h = func(x)/derivFunc(x)
# x(i+1) = x(i) - f(x) / f'(x)
x=x-h
print("The value of the root is : ",
"%.4f"% x)
# Driver program to test above
x0 = 1.0 # Initial values assumed
newtonRaphson(x0)
You might also like
Resolution Numerical Methods of The Chapra Book With Python PDF
PDF
No ratings yet
Resolution Numerical Methods of The Chapra Book With Python PDF
160 pages
Chapter # 2 Solution of Algebraic and Transcendental Equations
PDF
100% (2)
Chapter # 2 Solution of Algebraic and Transcendental Equations
31 pages
Numerical Analysis
PDF
No ratings yet
Numerical Analysis
12 pages
NM Total
PDF
No ratings yet
NM Total
163 pages
PMS Assignment Final
PDF
No ratings yet
PMS Assignment Final
29 pages
Exercise 1.1: X X On The Same Set of Axes. X X
PDF
No ratings yet
Exercise 1.1: X X On The Same Set of Axes. X X
15 pages
ACA 3 Numerical Analysis GROUP G
PDF
No ratings yet
ACA 3 Numerical Analysis GROUP G
17 pages
The Solution of Nonlinear Equations: Doç. Dr. Seher KUMCUOĞLU Doç. Dr. Onur Özdikicierler
PDF
No ratings yet
The Solution of Nonlinear Equations: Doç. Dr. Seher KUMCUOĞLU Doç. Dr. Onur Özdikicierler
21 pages
Chapter 2 Numerical Methods
PDF
No ratings yet
Chapter 2 Numerical Methods
46 pages
Roots of Nonlinear Equations 1
PDF
No ratings yet
Roots of Nonlinear Equations 1
55 pages
Code
PDF
No ratings yet
Code
32 pages
A43 Maths Ass9
PDF
No ratings yet
A43 Maths Ass9
12 pages
Lecture Notes Numerical Methods
PDF
No ratings yet
Lecture Notes Numerical Methods
7 pages
Newton Raphson
PDF
No ratings yet
Newton Raphson
6 pages
Practical
PDF
No ratings yet
Practical
20 pages
Newton Mahmud
PDF
No ratings yet
Newton Mahmud
5 pages
LAB 4 - Jupyter Notebook
PDF
No ratings yet
LAB 4 - Jupyter Notebook
6 pages
SM 3
PDF
No ratings yet
SM 3
67 pages
Practical No. 10
PDF
No ratings yet
Practical No. 10
4 pages
NMPDF 241130 110030
PDF
No ratings yet
NMPDF 241130 110030
146 pages
Solving Nonlinear Equation Using Newton-Raphson Method
PDF
No ratings yet
Solving Nonlinear Equation Using Newton-Raphson Method
32 pages
Lab 6
PDF
No ratings yet
Lab 6
3 pages
Course Materials - Numerical Methods-3
PDF
No ratings yet
Course Materials - Numerical Methods-3
14 pages
Lab 6
PDF
No ratings yet
Lab 6
3 pages
22csh-259-Exp 1.3
PDF
No ratings yet
22csh-259-Exp 1.3
4 pages
Report
PDF
No ratings yet
Report
16 pages
Computer Assignment
PDF
No ratings yet
Computer Assignment
12 pages
Numerical Analysis Formatted Guide
PDF
No ratings yet
Numerical Analysis Formatted Guide
5 pages
Akash
PDF
No ratings yet
Akash
36 pages
1.to Find The Roots of Non-Linear Equation Using Newton Raphson's Method
PDF
No ratings yet
1.to Find The Roots of Non-Linear Equation Using Newton Raphson's Method
2 pages
2024 Week 10 Roots - Jupyter Notebook
PDF
No ratings yet
2024 Week 10 Roots - Jupyter Notebook
3 pages
Slip 21
PDF
No ratings yet
Slip 21
3 pages
Solution HW2
PDF
No ratings yet
Solution HW2
8 pages
Python Exp3-Semester7.ipynb - Colab
PDF
No ratings yet
Python Exp3-Semester7.ipynb - Colab
2 pages
TME18250 - Aakash Virdhe - NRM & SAM - NMO
PDF
No ratings yet
TME18250 - Aakash Virdhe - NRM & SAM - NMO
2 pages
Nisha NT
PDF
No ratings yet
Nisha NT
10 pages
Bisectiom, Secant and Newton
PDF
No ratings yet
Bisectiom, Secant and Newton
3 pages
Unit1 Python
PDF
No ratings yet
Unit1 Python
8 pages
Newton Raphson
PDF
No ratings yet
Newton Raphson
7 pages
Newton-Raphson Method - Python Numerical Methods
PDF
No ratings yet
Newton-Raphson Method - Python Numerical Methods
2 pages
Calculus Assignment (Newton Raphson's Method)
PDF
No ratings yet
Calculus Assignment (Newton Raphson's Method)
9 pages
EAlab Codes
PDF
No ratings yet
EAlab Codes
6 pages
Lecture - 19 & 20
PDF
No ratings yet
Lecture - 19 & 20
14 pages
جبر٢
PDF
No ratings yet
جبر٢
18 pages
Ak Mathematics Iii Unit 1
PDF
No ratings yet
Ak Mathematics Iii Unit 1
6 pages
Root Finding: Dr. Gokul K. C
PDF
No ratings yet
Root Finding: Dr. Gokul K. C
37 pages
Lab07 Newton Raphson Method
PDF
No ratings yet
Lab07 Newton Raphson Method
5 pages
Roots of Equations
PDF
No ratings yet
Roots of Equations
31 pages
Assignment 4
PDF
No ratings yet
Assignment 4
2 pages
Root Finding Method - NR
PDF
No ratings yet
Root Finding Method - NR
14 pages
MA23211 Assignment3 Batch2 Final
PDF
No ratings yet
MA23211 Assignment3 Batch2 Final
2 pages
Solution of Algebric Trancendental Equation
PDF
No ratings yet
Solution of Algebric Trancendental Equation
6 pages
Numerical Method Exercise 2
PDF
No ratings yet
Numerical Method Exercise 2
7 pages
Numerical Solution of Equations of A Single Variable
PDF
No ratings yet
Numerical Solution of Equations of A Single Variable
7 pages
Chameli Devi Group of Institutions, Indore: Dr. Ravindra Parsai
PDF
No ratings yet
Chameli Devi Group of Institutions, Indore: Dr. Ravindra Parsai
55 pages
Activity 4 Maceda
PDF
No ratings yet
Activity 4 Maceda
3 pages
Numerical Analysis 3rd Stage
PDF
No ratings yet
Numerical Analysis 3rd Stage
50 pages
Maths Lab Notes Kishan
PDF
No ratings yet
Maths Lab Notes Kishan
2 pages
431 - Python 4 Backend Dev
PDF
No ratings yet
431 - Python 4 Backend Dev
5 pages
Chapter 1
PDF
No ratings yet
Chapter 1
8 pages
Computer Generations
PDF
No ratings yet
Computer Generations
7 pages
Attachment
PDF
No ratings yet
Attachment
3 pages
Worked Examples in Mathematics for Scientists and Engineers
From Everand
Worked Examples in Mathematics for Scientists and Engineers
G. Stephenson
No ratings yet
A Brief Introduction to MATLAB: Taken From the Book "MATLAB for Beginners: A Gentle Approach"
From Everand
A Brief Introduction to MATLAB: Taken From the Book "MATLAB for Beginners: A Gentle Approach"
Peter Kattan
2.5/5 (2)
Documents
Teaching Methods & Materials