Golden Section Search Method

  Рет қаралды 109,022

LearnChemE

LearnChemE

Күн бұрын

Organized by textbook: learncheme.com/ Describes how the Golden Search Method works and then describes how to set it up in Microsoft Excel. Made by faculty at the University of Colorado Boulder, Department of Chemical & Biological Engineering.
Check out our Engineering Computing playlists: www.youtube.co...

Пікірлер: 50
@jaydenasper207
@jaydenasper207 5 ай бұрын
unreal how easy topics can become when someone good at teaching teaches them. They need to start considering teaching ability when hiring professors at my school instead of only wanting field experts. THANK YOU!
@imranzubairi6110
@imranzubairi6110 2 жыл бұрын
Struggled to understand this topic in lectures, but I completely understand watching this. Thanks a lot.
@somethingdifferent1910
@somethingdifferent1910 2 жыл бұрын
Sir, at your first example it looked like your boundaryies were 0-4 not 0-10 .
@potatomato_
@potatomato_ 6 жыл бұрын
the example said get the minimum between x=0 and x=4 but the computation used b=10 :)
@hilsCYBER
@hilsCYBER 2 жыл бұрын
true
@bhargavasai7848
@bhargavasai7848 Жыл бұрын
same doubt
@Steve4Physics
@Steve4Physics 6 жыл бұрын
Nice, clearly explained. But note that the golden ratio is GR = (1+√5)/2 ≈ 1.618. What you call the golden ratio (at 0:55) is in fact GR-1.
@benbrown199690bb
@benbrown199690bb 5 жыл бұрын
It's so refreshing to finally find a video that clearly explains a concept that you've been struggling with. Thank you!
@AJ-et3vf
@AJ-et3vf 2 жыл бұрын
Awesome video! Thank you! Truly a superb channel for learning numerical analysis with the wonderful software of Excel
@RandomItchyUser
@RandomItchyUser 4 жыл бұрын
Such a great explanation! Greatings from Argentina
@MohammedBakheet
@MohammedBakheet 4 жыл бұрын
Thank you so much sir, your explanation is fantastic and very clear, keep it up :)
@thegloriousgoldeneagle
@thegloriousgoldeneagle 7 ай бұрын
Sir I love your videos! Thank you.
@fffppp8762
@fffppp8762 5 жыл бұрын
b=10 or 4?
@user-gl4nc2to2e
@user-gl4nc2to2e 6 ай бұрын
great explanation
@user-eb6bg4oh4h
@user-eb6bg4oh4h Жыл бұрын
Thank you! it is co clear that I can easily understand.
@esosaekuobase4753
@esosaekuobase4753 2 ай бұрын
Thanks
@kevinkameswara7170
@kevinkameswara7170 4 жыл бұрын
Thank you very much for the explanation
@oleersoy6547
@oleersoy6547 4 жыл бұрын
Very FRIGGIN AWESOME!!
@akashjadhav2218
@akashjadhav2218 Жыл бұрын
absolutely great sir
@aswinibanerjee6261
@aswinibanerjee6261 2 жыл бұрын
Great video. Can you share which software you use to produce such clean graphics
@bttfish
@bttfish 5 жыл бұрын
excellent explaination!!
@mattjensen9240
@mattjensen9240 2 жыл бұрын
my textbook says the opposite for fx1
@ethanshapiro4208
@ethanshapiro4208 8 ай бұрын
I have a similar issue. I think it is because he considers case where x2 < x1 where our textbooks consider x1 < x2
@renjing
@renjing 2 жыл бұрын
So this only works for convex/concave functions?
@rawwringquokka
@rawwringquokka Жыл бұрын
yeah, the assumption we take is that there is only one global minima
@BnymnSntrkNu
@BnymnSntrkNu 5 жыл бұрын
thanks, clean and simple.
@lucasyoung2909
@lucasyoung2909 4 жыл бұрын
very clear, thank you~
@jerrylam5050
@jerrylam5050 3 жыл бұрын
Isn't golden ratio 1.618 instead of 0.618?
@kailashks901
@kailashks901 3 жыл бұрын
I had the exact same doubt. In the MIT book it is given as ϕ = (1 +√5)/2 = 1.618 (golden ratio). I am gonna follow this one. d = rho * b + (1 - rho) * a, where rho is golden ratio - 1 (0.618)
@Bunty793
@Bunty793 2 жыл бұрын
isn't the golden ratio 1.618
@0nly_sh0rts
@0nly_sh0rts 3 жыл бұрын
good one...thank you!
@ElBuenAgua
@ElBuenAgua 4 жыл бұрын
Awesome thanks!
@flaguser4196
@flaguser4196 2 жыл бұрын
so it's bisection but using the golden ratio instead of 1/2. is there any mathematical reason/advantage to use the golden ratio?
@danielchowdhury1008
@danielchowdhury1008 Ай бұрын
Although I haven't learned this in college yet, I believe this is a bit different from the bisection method. In this method, it converges to the minimum of a function, which is not the case with the traditional bisection method. To find the minimum using the bisection method, you would need to calculate the derivative and then find when the derivative equals zero. Am I correct? Is there a specific bisection method for finding minimums and maximums?
@himself9278
@himself9278 2 жыл бұрын
Kindly present the following in R
@7SOON26
@7SOON26 5 жыл бұрын
amazing
@PinguExpert
@PinguExpert 5 жыл бұрын
Thanks fam
@sameterayerdem676
@sameterayerdem676 6 жыл бұрын
so good expression
@tutkuduruer6772
@tutkuduruer6772 4 жыл бұрын
perfect
@dhruvpurwar6642
@dhruvpurwar6642 Жыл бұрын
Great
@benmohandlhoussaine1563
@benmohandlhoussaine1563 6 жыл бұрын
Can you implement this algorithm( golden rule by bisection method ) to matlab: at iteration k: interval [a_k ; b_k] d_k = (3a_k + b_k)/4 c_k = (a_k + b_k)/2 e_k = (a_k + 3b_k)/4 f(c_k) > f(e_k) ==> a_k+1 = c_k and b_k+1 = b_k f(d_k) > f(c_k) ==> a_k+1 = a_k and b_k+1 = c_k else a_k+1 = d_k and b_k+1 = e_k stop : when b_k - a_k
@yirahigoo7809
@yirahigoo7809 5 жыл бұрын
How do you find the maximum?
@JR-mk6ow
@JR-mk6ow 4 жыл бұрын
Just use this method for -f(x).
@drezryy6989
@drezryy6989 3 жыл бұрын
@@JR-mk6ow I don't understand, what do you mean? change in the excel?
@vaiebhavpatil2340
@vaiebhavpatil2340 2 жыл бұрын
@@drezryy6989 what he means is, finding minimum of f(x) is same as finding maxmimum of -f(x).
@luiscalderon204
@luiscalderon204 5 жыл бұрын
The Golden ratio here is incorrect
@berkaybicer4249
@berkaybicer4249 3 жыл бұрын
bence de kanka aynı formülü yazmış yeah it is not correct for me too
@alvarez2244
@alvarez2244 4 жыл бұрын
Please dont put up a video when you cant teach something in a simple way. You made a lot of confusing steps.4 or 10. You create more of a problem than a solution. I wasted 3 minutes trying to understand why you used 10 rather than 4. Thanks.
@Chapz725
@Chapz725 4 жыл бұрын
He went out of his way to make educational vids for people like us . He fucked up, he is human. Calm your shit dude.
Applied Optimization - Steepest Descent
29:49
purdueMET
Рет қаралды 62 М.
ROLLING DOWN
00:20
Natan por Aí
Рет қаралды 11 МЛН
Blue Food VS Red Food Emoji Mukbang
00:33
MOOMOO STUDIO [무무 스튜디오]
Рет қаралды 20 МЛН
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 166 МЛН
А ВЫ УМЕЕТЕ ПЛАВАТЬ?? #shorts
00:21
Паша Осадчий
Рет қаралды 2 МЛН
Golden Section Search Method for Unimodal Functions
24:10
Dr. Harish Garg
Рет қаралды 60 М.
The hardest problem on the hardest test
11:15
3Blue1Brown
Рет қаралды 15 МЛН
One minus one plus one minus one - Numberphile
11:10
Numberphile
Рет қаралды 4,6 МЛН
Visually Explained: Newton's Method in Optimization
11:26
Visually Explained
Рет қаралды 98 М.
Golden Section Search
13:30
Maths Partner
Рет қаралды 65 М.
The History of Mathematics and Its Applications
21:18
Zach Star
Рет қаралды 1,2 МЛН
Bayes theorem, the geometry of changing beliefs
15:11
3Blue1Brown
Рет қаралды 4,3 МЛН
Floating Point Numbers - Computerphile
9:16
Computerphile
Рет қаралды 2,3 МЛН
(ML 15.1) Newton's method (for optimization) - intuition
11:16
mathematicalmonk
Рет қаралды 146 М.
ROLLING DOWN
00:20
Natan por Aí
Рет қаралды 11 МЛН