Sir, salamat po. Heto yung tamang kapartner ng modules na ibinibigay sa OL classes. God Bless po.
@reysielouano4343 Жыл бұрын
SALAMAT sir ❤ talagang makukuha mo ang step by step procedure.
@noeldelrosario3694 жыл бұрын
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)
@engrleir4 жыл бұрын
Nice touch on setting the maximum number of iterations (n) relative to the desired error (epsilon). Thanks!
@fritzconcel41614 жыл бұрын
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.lincod40074 жыл бұрын
Laking tulong sir!! Hoping to see more lecture videos from you! Godbless
@joelcagay2024Ай бұрын
Very nice explanation. Thank you Engr.
@fawlen_eynjuhl6 ай бұрын
Thank you sir naiintindihan ko pong maliwanag❤
@tanglaorenzjordanm.93794 жыл бұрын
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.98714 жыл бұрын
nice dan hahaha
@tanglaorenzjordanm.93794 жыл бұрын
@@alcaidejurep.9871 hahahahahahaha namo
@jaybheart97672 жыл бұрын
Hi naman dyan sa may quiz mamaya
@nishimiyashouko57773 жыл бұрын
Sir more examples po. And additional information about Approximate Relative Errors(pahapyaw Lang po Kasi saamin ito) inlined with this method po.
@marquezjordanl.8352 жыл бұрын
Thank you po! Ang linaw nung explanation!
@notpiccaboo1423 жыл бұрын
Thank you sir! Hoping na more examples pa!
@siaaa693 жыл бұрын
Very helpful! Salamat!
@engineermarjbustamante173 жыл бұрын
Thank you for this vid engr. mas naenlighten ako sa topic namin. More power and God bless 😇.
@engrleir3 жыл бұрын
You’re welcome! 😁
@tyfrixandri84064 жыл бұрын
well explained! sana mag karoon ka pa ng madaming subscriber! salute
@engrleir4 жыл бұрын
Thank you!
@shainaordona86994 жыл бұрын
More numerical methods and analysis sir ty😊
@engrleir4 жыл бұрын
Sure 👍. Will upload soon 😁
@charlesenricosalinas713 жыл бұрын
Galing po ng explanation boss.
@iamsolly5252 жыл бұрын
Thank you po, sir.
@annabellesanico82192 жыл бұрын
Thanks for a well explained topic sir.
@sondereclaans45113 жыл бұрын
Syempre subscribe ako, dami ko natutunan ehh
@allenmaedeleon47612 жыл бұрын
Thanks for the videos! Very helpful and easy to understand :) Do you have Muller's Method? Thank you
@francisdavesiacor85652 жыл бұрын
go @Allen Mae!
@AxiePlays6012 жыл бұрын
Salamat po idol. Kelan po malalaman kung kailan magsstop ng iteration?
@nicasiy4 жыл бұрын
Make a course about Numerical Methods (differentiation/integration, curve fitting, Least square approximation, Ordinary Differential Equations, Interpolation) please!!
@engrleir4 жыл бұрын
Hello thanks for watching. Yes, I’m making it right now. Sana matapos this week.
@asanuddinmariellegayem68404 жыл бұрын
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.
@sondereclaans45113 жыл бұрын
Parang precise na siguro ung nakuhang root na 0.5625 or approximate sa 0.5671
@lesterjanito14784 жыл бұрын
Nice po. Salamat❤️
@patriciaglifonea29533 жыл бұрын
more numerical methods topic sir, thanks
@aljae.intheoceans2 жыл бұрын
waw this has made easy!
@tuboroalliat.72374 жыл бұрын
This really helped sir! Hope to see more videos of you!
@joshuacabidoy95314 жыл бұрын
kudos galing magturo ;)
@engrleir4 жыл бұрын
Thank you po!
@angelineromanbautista84024 жыл бұрын
subscribe ako dito, it really helped HAHAHA thanks po btw
@arjhondelantarmarquez30663 жыл бұрын
Sana meron example kayo sa opene method
@mukbangislife17844 жыл бұрын
more on numerical methods aand analysis sir 🥺
@engrleir4 жыл бұрын
Hello. Thanks for watching! I will make more this month. 😄
@jovanmagtoto16823 жыл бұрын
Very well said sir. Wala po ba itong excel? :)
@dansinn2 жыл бұрын
Good explanation, better you make it full english
@dexterabila19853 жыл бұрын
Can we use this po ba to find the roots of 7th degree polynomials?
@lorettacruz30873 жыл бұрын
Paano kapag hindi given yung value na m? Pano ko malalaman na magsstop nako sa pag itterate?
@mananquilpauldaviss.69944 жыл бұрын
👏👏👏
@engrleir4 жыл бұрын
🙏🙏🙏 thanks for watching!
@salazarkevinjan24193 жыл бұрын
Done
@jonesratilla16822 жыл бұрын
paano kinuha yong -0.632 sa f(xright)??
@ernestogaddi80213 жыл бұрын
sensei arigato gozaimasu
@jeromesalvador89842 жыл бұрын
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
@edgardoconcepcion83084 жыл бұрын
sir, paano ung cal tech n2 s casio fx 911 es plus?
@engrleir4 жыл бұрын
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)
@navarrocarljericcabigon778710 ай бұрын
WHAT BOOK DO YOU USE PO?
@tutstorial84744 жыл бұрын
wala po tong for excel? gaya nung ibang methods sir?😅
@gondraneosjhetroarabit98074 жыл бұрын
Sir paturo po pag sa excel, nakaka lito po kase pag gagawa ng statement sa 2nd iteration sa guess a at guess b
@engrleir4 жыл бұрын
Hello. Thanks for watching. Meron po ako video using excel para sa root finding. Eto po kzbin.info/www/bejne/iaHQf5qPe9JmkMU
@gondraneosjhetroarabit98074 жыл бұрын
@@engrleir thank you po sir, God bless po
@beysik68713 жыл бұрын
sir pwede po mag request ng problems which can be solve using any numerical methods
@merlundreyzamora13244 жыл бұрын
Sir. May excel po ba neto? Bisection*
@teodhcreed14442 жыл бұрын
Buti pa to naiintidihan ko yung sa prof namin parang ewan