Analisa Numerik Sistem Persamaan Non-Linear 1. 2 Pendahuluan Diberikan f(x) = 0, terdefinisi pada suatu interval [a, b]. Cari x* sedemikian shg. f(x*)

Slides:



Advertisements
Similar presentations
DERET FOURIER WAKTU KONTINU (DFWK) TEAM DOSEN
Advertisements

Pendekatan Kuantitatif dan Kualitatif
Bahan Kuliah IF3058 Kriptografi
Small World, Isn’t It? Charlotte, Samantha, Alyssa, and Amelie.
Eliminasi Gauss Bentuk:.
Hubungan Linear.
Pangkat, Akar dan Logaritma
Pangkat, Akar dan Logaritma
SRI SULASMIYATI, S.SOS, M.AP
PROSES DAN TATACARA PEMBENTUKAN ISTILAH
Konik Himpunan titik yang perbandingan jarak
BAB IV Kurva Kuadratik.
BAB 5. SELANG, KETAKSAMAAN DAN NILAI MUTLAK
Sebaran Peluang Bersama
Algoritma Brute Force.
MATERI : PROGRAM LINIER
Univ. INDONUSA Esa Unggul INF-226 FEB 2006 Pertemuan 7 Tujuan Instruksional Umum : Interpolasi non-linier Tujuan Instruksional Khusus : Mahasiswa dapat.
PEMBUATAN APLIKASI PENGERJAAN SOAL PRETEST DAN UJIAN Muhammad Arsah Novel Simatupang, for further detail, please visit
HANNY COLLECTION ANALISIS BREAK EVEN POINT SEBAGAI PENENTU LABA PADA CV for further detail, please visit
Pembuatan Website Bimbingan Belajar Sony Education College (SEC) Aditya Widyanto for further detail, please visit
FUNGSI PEMBANGKIT MOMEN PEUBAH ACAK KONTINU KHUSUS
- PERTEMUAN 2- CONSTRUCTOR PBO. Definisi Konstruktor Konstruktor adalah sebuah metode yang dapat digunakan untuk memberikan nilai awal saat objek diciptakan.
Rapat pertama tgl 10 Mei 2009 Abensi : 1.Nugroho Iman Wibisono 2.Arif Adrianto 3.Sugiarto 4.Muningsih.
PANDUAN POLIGON 4 GAYA. PANDUAN POLIGON 4 GAYA.
PERSAMAAN LINEAR/ GARIS LURUS LANJUTAN
Proses Stokastik Semester Ganjil 2013/2014
Created by : Aska M.Y ( ) Ayu D.A ( ) Indah Y.K ( ) assaLamu’alaikum wr.wb …. BAB : LINGKARAN Matkom 3A – FKIP – Universitas Muhammadiyah.
PRETEST SISTEM KOORDINAT Agus Joko Waluyo, S.Si
FKIP AKUNTANSI UMS 1. Pengertian Bank 2. Fungsi Bank 3. Jenis dan Bentuk Bank 4. Produk Bank.
ROOTS OF EQUATIONS Student Notes ENGR 351 Numerical Methods for Engineers Southern Illinois University Carbondale College of Engineering Dr. L.R. Chevalier.
TRANSFORMASI PEUBAH ACAK I
Regula-Falsi Method. Type of Algorithm (Equation Solver) The Regula-Falsi Method (sometimes called the False Position Method) is a method used to find.
Roots of Equations Open Methods (Part 2).
Second Term 05/061 Roots of Equations Bracketing Methods.
A few words about convergence We have been looking at e a as our measure of convergence A more technical means of differentiating the speed of convergence.
Open Methods (Part 1) Fixed Point Iteration & Newton-Raphson Methods
Roots of Equations Bracketing Methods.
Equations of Lines; Building Linear Functions January 22, 2007.
NUMERICAL METHODS WITH C++ PROGRAMMING
Solving Non-Linear Equations (Root Finding)
Graphics Graphics Korea University kucg.korea.ac.kr 2. Solving Equations of One Variable Korea University Computer Graphics Lab. Lee Seung Ho / Shin.
Numerical Methods.
Lecture 5 - Single Variable Problems CVEN 302 June 12, 2002.
Solving Non-Linear Equations (Root Finding)
MATH 175: Numerical Analysis II Lecturer: Jomar Fajardo Rabajante IMSP, UPLB 2 nd Sem AY
 The equation with one variable. At P(atm) equals 0.5 atm, What is T ? ? ?
The MATH and the Vernier System at Faculty of Aeronautics Štefan Berežný, Kristína Budajová, Eva Komová, Henrich Glaser-Opitz TECHNICAL UNIVERSITY IN KOŠICE.
Numerical Analysis Lecture 5.
The Dimension of Cone and Ball
Point-Slope Form of a Linear Equation
Newton’s Method for Systems of Non Linear Equations
LECTURE 3 OF SOLUTIONS OF NON -LINEAR EQUATIONS.
CS B553: Algorithms for Optimization and Learning
TEMPERATURE.
Average Rates of Change
PENYELESAIAN MASALAH Masalah – perkara yang belum di selesaikan yg memerlukan penyelesaian atau keputusan yg memerlukan pertimbangan.
MATH 2140 Numerical Methods
Numerical Analysis Lecture 7.
Numerical Analysis Lecture 45.
MATH 175: Numerical Analysis II
Optical Feed Line Xiangyu Zhou 20. Nov
How do you determine if a function is linear or non linear
Linearization and Newton’s Method
Linearization and Newton’s Method
Lecture 11 Graphics ChE 310.
THIS IS.
Packet #4 Average Rate of Change
Non-Linear Functions by Substitution
CALCULUS Problem Bank Newton’s method.
Linear approximation Median home prices in Austin
Presentation transcript:

Analisa Numerik Sistem Persamaan Non-Linear 1

2 Pendahuluan Diberikan f(x) = 0, terdefinisi pada suatu interval [a, b]. Cari x* sedemikian shg. f(x*) 0.  Metoda Bisection  Metoda Regula Falsi (RF) Modifikasi RF Bentuk umum Iterasi-titik tetap (fixed point) Perbaikan Secant Newton

3 Metoda Bisection Algoritma 3.1. Metoda Bisection : f (x) kontinu pada [a 0, b 0 ] dan f(a 0 ) f(b 0 ) <= 0 for n = 0, 1, 2,..., until satisfied do m = (a n + b n ) / 2 if f(a n )f(m) ≤ 0, a n+1 = a n, b n+1 = m else a n+1 = m, b n+1 = b n end for f(x) punya x* pada [a n+1, b n+1 ]

4 Metoda Regula Falsi Bisection lambat dlm. mendekati x*, mk. titik m di bisection ditentukan dng. memakai bobot rata-rata w = [f(b n )a n – f(a n )b n ] / [f(b n ) – f(a n )] metoda ini disebut regula falsi Algoritma 3.2. Metoda Regula Falsi : f(x) kontinu pd. [a0, b0] dan f(a0)f(b0) < 0 for n = 0, 1, 2,... until satisfied do w = [f(b n )a n – f(a n )b n ] / [f(b n ) – f(a n )] if f(an)f(w) ≤ 0, an+1 = an, bn+1 = w else an+1 = w, bn+1 = bn end for

5 Metoda Regula Falsi

6 Modifikasi Regula Falsi Algoritma 3.3. Modifikasi Regula Falsi f(x) kontinu pada [a 0, b 0 ], f(a 0 )f(b 0 ) < 0 F = f(a 0 ), G = f(b 0 ), w 0 = a 0 for n = 0, 1, 2,..., until satisfied, do : w n+1 = (Ga n – Fb n ) / (G – F) if f(a n )f(w n+1 ) ≤ 0, a n+1 = a n, b n+1 = w n+1, G = f(w n+1 ) if f(an)f(wn+1) ≥ 0, F = F/2 else an+1 = wn+1, F = f(wn+1), bn+1 = bn if f(wn)f(wn+1) ≥ 0, G = G/2 end if end for f(x) punya x* pada [a n+1, b n+1 ]

7 Modifikasi Regula Falsi