Root Finding - Bisection Method | Numerical Methods (Tagalog) 🇵🇭

  Рет қаралды 129,074

engrleir

engrleir

Күн бұрын

Пікірлер: 67
@alexisacosta4234
@alexisacosta4234 4 жыл бұрын
Sir, salamat po. Heto yung tamang kapartner ng modules na ibinibigay sa OL classes. God Bless po.
@reysielouano4343
@reysielouano4343 Жыл бұрын
SALAMAT sir ❤ talagang makukuha mo ang step by step procedure.
@noeldelrosario369
@noeldelrosario369 4 жыл бұрын
Thanks for the Lecture. Well Explained. It is really good I am refreshing myself with Numerical Metod. I am also trying to put it into a program using Python V3+. I remember doing it in BASIC when I was a student. In case someone out there might be interested... Cheers. ## module bisect ''' root = bisect(f,x1,x2,switch=0,tol=1.0e-9). Finds a root of f(x) = 0 by bisection. The root must be bracketed in (x1,x2). Setting switch = 1 returns root = None if f(x) increases as a result of a bisection. ''' from math import log, ceil, exp import error def bisect(fy,x1,x2,switch=0,epsilon=1.0e-9): f1 = fy(x1) if f1 == 0.0: return x1 f2 = fy(x2) if f2 == 0.0: return x2 if f1*f2 > 0.0: error.err('Root is not bracketed') n = ceil(log(abs(x2 - x1)/epsilon)/log(2.0)) for i in range(n): x3 = 0.5*(x1 + x2); f3 = fy(x3) if (switch == 1) and (abs(f3) >abs(f1)) \ and (abs(f3) > abs(f2)): return None if f3 == 0.0: return x3 if f2*f3 < 0.0: x1 = x3; f1 = f3 else: x2 = x3; f2 = f3 return (x1 + x2)/2.0 # Function is fy = exp(-x) - x def fy(x): return(exp(-x) - x) # MAIN # Optional Test Initial Brackets [0,1] print('f(0) = ',fy(0)) print('f(1) = ',fy(1)) # Invoke Bisect Method for f(y) = exp(-x) - x x1 = 0; x2 = 1 root = bisect(fy,x1,x2,switch=0,epsilon=1.0e-9) print('root = ', root)
@engrleir
@engrleir 4 жыл бұрын
Nice touch on setting the maximum number of iterations (n) relative to the desired error (epsilon). Thanks!
@fritzconcel4161
@fritzconcel4161 4 жыл бұрын
boss ito yung literal na inaaral namin ngayon, at nung una di ko talaga masagutan kasi sa unang tingin di ko magets. sobrang helpful ng video na to! godbless sir!
@chellyandrieb.lincod4007
@chellyandrieb.lincod4007 4 жыл бұрын
Laking tulong sir!! Hoping to see more lecture videos from you! Godbless
@joelcagay2024
@joelcagay2024 Ай бұрын
Very nice explanation. Thank you Engr.
@fawlen_eynjuhl
@fawlen_eynjuhl 6 ай бұрын
Thank you sir naiintindihan ko pong maliwanag❤
@tanglaorenzjordanm.9379
@tanglaorenzjordanm.9379 4 жыл бұрын
Sobrang goods ng explanation ayos na aos grabe thankyou so much po sir, Na gets ko agad lesson namen sa numerical God bless po sir. More lesson to come po
@alcaidejurep.9871
@alcaidejurep.9871 4 жыл бұрын
nice dan hahaha
@tanglaorenzjordanm.9379
@tanglaorenzjordanm.9379 4 жыл бұрын
@@alcaidejurep.9871 hahahahahahaha namo
@jaybheart9767
@jaybheart9767 2 жыл бұрын
Hi naman dyan sa may quiz mamaya
@nishimiyashouko5777
@nishimiyashouko5777 3 жыл бұрын
Sir more examples po. And additional information about Approximate Relative Errors(pahapyaw Lang po Kasi saamin ito) inlined with this method po.
@marquezjordanl.835
@marquezjordanl.835 2 жыл бұрын
Thank you po! Ang linaw nung explanation!
@notpiccaboo142
@notpiccaboo142 3 жыл бұрын
Thank you sir! Hoping na more examples pa!
@siaaa69
@siaaa69 3 жыл бұрын
Very helpful! Salamat!
@engineermarjbustamante17
@engineermarjbustamante17 3 жыл бұрын
Thank you for this vid engr. mas naenlighten ako sa topic namin. More power and God bless 😇.
@engrleir
@engrleir 3 жыл бұрын
You’re welcome! 😁
@tyfrixandri8406
@tyfrixandri8406 4 жыл бұрын
well explained! sana mag karoon ka pa ng madaming subscriber! salute
@engrleir
@engrleir 4 жыл бұрын
Thank you!
@shainaordona8699
@shainaordona8699 4 жыл бұрын
More numerical methods and analysis sir ty😊
@engrleir
@engrleir 4 жыл бұрын
Sure 👍. Will upload soon 😁
@charlesenricosalinas71
@charlesenricosalinas71 3 жыл бұрын
Galing po ng explanation boss.
@iamsolly525
@iamsolly525 2 жыл бұрын
Thank you po, sir.
@annabellesanico8219
@annabellesanico8219 2 жыл бұрын
Thanks for a well explained topic sir.
@sondereclaans4511
@sondereclaans4511 3 жыл бұрын
Syempre subscribe ako, dami ko natutunan ehh
@allenmaedeleon4761
@allenmaedeleon4761 2 жыл бұрын
Thanks for the videos! Very helpful and easy to understand :) Do you have Muller's Method? Thank you
@francisdavesiacor8565
@francisdavesiacor8565 2 жыл бұрын
go @Allen Mae!
@AxiePlays601
@AxiePlays601 2 жыл бұрын
Salamat po idol. Kelan po malalaman kung kailan magsstop ng iteration?
@nicasiy
@nicasiy 4 жыл бұрын
Make a course about Numerical Methods (differentiation/integration, curve fitting, Least square approximation, Ordinary Differential Equations, Interpolation) please!!
@engrleir
@engrleir 4 жыл бұрын
Hello thanks for watching. Yes, I’m making it right now. Sana matapos this week.
@asanuddinmariellegayem6840
@asanuddinmariellegayem6840 4 жыл бұрын
Good day, sir! How to know po the correct value of your x? Sa example niyo po, you already said agad na ang root ay 0.5671. Salamat po.
@sondereclaans4511
@sondereclaans4511 3 жыл бұрын
Parang precise na siguro ung nakuhang root na 0.5625 or approximate sa 0.5671
@lesterjanito1478
@lesterjanito1478 4 жыл бұрын
Nice po. Salamat❤️
@patriciaglifonea2953
@patriciaglifonea2953 3 жыл бұрын
more numerical methods topic sir, thanks
@aljae.intheoceans
@aljae.intheoceans 2 жыл бұрын
waw this has made easy!
@tuboroalliat.7237
@tuboroalliat.7237 4 жыл бұрын
This really helped sir! Hope to see more videos of you!
@joshuacabidoy9531
@joshuacabidoy9531 4 жыл бұрын
kudos galing magturo ;)
@engrleir
@engrleir 4 жыл бұрын
Thank you po!
@angelineromanbautista8402
@angelineromanbautista8402 4 жыл бұрын
subscribe ako dito, it really helped HAHAHA thanks po btw
@arjhondelantarmarquez3066
@arjhondelantarmarquez3066 3 жыл бұрын
Sana meron example kayo sa opene method
@mukbangislife1784
@mukbangislife1784 4 жыл бұрын
more on numerical methods aand analysis sir 🥺
@engrleir
@engrleir 4 жыл бұрын
Hello. Thanks for watching! I will make more this month. 😄
@jovanmagtoto1682
@jovanmagtoto1682 3 жыл бұрын
Very well said sir. Wala po ba itong excel? :)
@dansinn
@dansinn 2 жыл бұрын
Good explanation, better you make it full english
@dexterabila1985
@dexterabila1985 3 жыл бұрын
Can we use this po ba to find the roots of 7th degree polynomials?
@lorettacruz3087
@lorettacruz3087 3 жыл бұрын
Paano kapag hindi given yung value na m? Pano ko malalaman na magsstop nako sa pag itterate?
@mananquilpauldaviss.6994
@mananquilpauldaviss.6994 4 жыл бұрын
👏👏👏
@engrleir
@engrleir 4 жыл бұрын
🙏🙏🙏 thanks for watching!
@salazarkevinjan2419
@salazarkevinjan2419 3 жыл бұрын
Done
@jonesratilla1682
@jonesratilla1682 2 жыл бұрын
paano kinuha yong -0.632 sa f(xright)??
@ernestogaddi8021
@ernestogaddi8021 3 жыл бұрын
sensei arigato gozaimasu
@jeromesalvador8984
@jeromesalvador8984 2 жыл бұрын
Good pm boss, ano pong app ginagamit nyo sa pagturo? Wala akong mahanap po kaseng magandanng app, need ko rin turuan mga kaklase ko po. Salamat
@edgardoconcepcion8308
@edgardoconcepcion8308 4 жыл бұрын
sir, paano ung cal tech n2 s casio fx 911 es plus?
@engrleir
@engrleir 4 жыл бұрын
Hello thanks for watching. Pasensya na po, di ako familiar sa caltech ng bisection method. Usually pag root finding kasi tapos calculator, ung solve function ng calcu ang ginagamit (parang newton raphson)
@navarrocarljericcabigon7787
@navarrocarljericcabigon7787 10 ай бұрын
WHAT BOOK DO YOU USE PO?
@tutstorial8474
@tutstorial8474 4 жыл бұрын
wala po tong for excel? gaya nung ibang methods sir?😅
@gondraneosjhetroarabit9807
@gondraneosjhetroarabit9807 4 жыл бұрын
Sir paturo po pag sa excel, nakaka lito po kase pag gagawa ng statement sa 2nd iteration sa guess a at guess b
@engrleir
@engrleir 4 жыл бұрын
Hello. Thanks for watching. Meron po ako video using excel para sa root finding. Eto po kzbin.info/www/bejne/iaHQf5qPe9JmkMU
@gondraneosjhetroarabit9807
@gondraneosjhetroarabit9807 4 жыл бұрын
@@engrleir thank you po sir, God bless po
@beysik6871
@beysik6871 3 жыл бұрын
sir pwede po mag request ng problems which can be solve using any numerical methods
@merlundreyzamora1324
@merlundreyzamora1324 4 жыл бұрын
Sir. May excel po ba neto? Bisection*
@teodhcreed1444
@teodhcreed1444 2 жыл бұрын
Buti pa to naiintidihan ko yung sa prof namin parang ewan
@alfredod.antipasado95
@alfredod.antipasado95 Жыл бұрын
Magbilat
Bisection Method | Lecture 13 | Numerical Methods for Engineers
9:20
Jeffrey Chasnov
Рет қаралды 154 М.
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 277 МЛН
Car Bubble vs Lamborghini
00:33
Stokes Twins
Рет қаралды 32 МЛН
Bisection method | solution of non linear algebraic equation
4:27
Smart Engineer
Рет қаралды 887 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 1,4 МЛН
Bisection Method Example | Numerical Methods
5:03
StudySession
Рет қаралды 37 М.
Numerical Methods | Bracketing Methods
20:27
Sir Medz
Рет қаралды 20 М.
Bisection Example/Excel
6:47
LearnChemE
Рет қаралды 119 М.
How to locate a root | Bisection Method | ExamSolutions
12:52
ExamSolutions
Рет қаралды 310 М.
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 277 МЛН