In 2020 still this video explains the stuff so easily that no other video explains 🙏🙏
@sinewavey6 жыл бұрын
Honestly, this video still holds up well after 7 years. Your stuff really helps, thanks!
@basketvector73113 жыл бұрын
Holds up well after 7 years. That's funny. This math is from ancient Greece isn't it?
@sinewavey3 жыл бұрын
@@basketvector7311 Doubtful about Newton's method, but I think it's kinda clear I was referring to the video.
@belu-film63352 ай бұрын
13 years
@harjitsingh73085 жыл бұрын
2019 and this video is still the best. Mathematics never changes, this video will still be as helpful in 100 years from now just as it is today.
@oussamaelbazzim35789 ай бұрын
Its 2024 and this is still one banger of a video.Great explanation as usual.Many thanks !
@mikepowell82912 жыл бұрын
These videos are super helpful, an hour lecture condensed into 5 minutes!
@luqmansen5 жыл бұрын
Wow, just found this gem in 2019, very simple explanation, great video !
@ai_serf Жыл бұрын
Wanted to learn about taylor series, the rabbit hole has taken me to this foundational level. I love how you suggest foundational videos! this is a key element in presenting material! Thank you for great idea!
@panthopothik6338 Жыл бұрын
This is exactly what I was looking for. Thanks so much
@conformist6 жыл бұрын
Very helpful video, simple and short, while still getting to the important points. Many thanks.
@maddy1122115 жыл бұрын
Love your videos, they are so helpful in such a short amount of time. The only thing I would like to see is smaller subtitles!
@OscarVeliz5 жыл бұрын
You can customize the subtitles how you like support.google.com/youtube/answer/100078
@sushankhyachapagain788 Жыл бұрын
Great job dude. Your videos helps a lot.
@aftabhassan89968 жыл бұрын
@Oscar Veliz, great video! At 2:28 , isn't is x_n+1 = 1/2(x_n + a/x_n) though? Isn't it a + sign as opposed to a - sign?
@OscarVeliz8 жыл бұрын
Yes it should be addition instead of subtraction. I don't know how I didn't catch that earlier. Thank you.
@adelmalik983810 жыл бұрын
good job and thank you so much very helpful
@alexandrevachon5413 жыл бұрын
For x^7 - 1000, it means finding the 7th root of 1000. Speaking of square roots, have you heard of the fast inverse square root? This algorithm was used in the Quake III video game. With this algorithm, it resulted in a speedup of performance in the game, a very smart use of such a root-finding algorithm.
@OscarVeliz3 жыл бұрын
I have heard of it but am not familiar with it. Might be worth looking into.
@bradleyh6143 жыл бұрын
Thank you kind sir
@mynoveladventures54253 жыл бұрын
Thank you!
@mjbaay9 жыл бұрын
Thanks!
@chancewatkins507110 жыл бұрын
Very nice demonstration, thanks for sharing; Jesus Christ Bless you! :)
@yoyaya00713 жыл бұрын
waw bro thanks good job !
@AJ-et3vf3 жыл бұрын
Love this!!! ❤️❤️❤️❤️
@madawacko2588 жыл бұрын
Thank you
@Maxim95753 жыл бұрын
Could you explain the next thing? Maybe you know bezier curves and you know what in the most solutions use Newton-Raphson method. But as far we know we use this formula on every iteration t = t - (bezierX(t) - x) / derivativeX. But in here I dont understand why we are dividing bezierX - x on derivativeX. Why don't we simply divide bezierX on derivativeX. What is it "-x" and why does it require. P.S of course "x" is initial point on x axis.
@koreedeiqbal91419 ай бұрын
Please explain Which software is used for this video making ❤
@OscarVeliz9 ай бұрын
PowerPoint and Microsoft Mathematics 😁
@ccuuttww5 жыл бұрын
I think Newton's method can also find minimum or maximum value but I don't if it can handle the equation like this: (1+x*-2)^2+(1+x*-2)^2-0.001(1/(1-(1+x*-2)-(1+x*-2))) It is a discontinous function I have tried it with quadratic interpolation I get only the smallest local minimum
@OscarVeliz5 жыл бұрын
You don't necessarily need to do interpolation. Like I mentioned in my video on Finite Difference Method (kzbin.info/www/bejne/sKfVhZyojLKteJo), when finding extrema, instead of where f is zero you find where f' is zero (just substitute f' for f). Take a look at my video on Newton-Bisection Hybrid (kzbin.info/www/bejne/fHWWc4OKgqx9mtU) if you want to keep Newton's Method within a certain interval.
@tanjil35952 жыл бұрын
Great
@djamelaitamrane92263 жыл бұрын
combining Newt and bisection gives more safety. i am looking for a C code with an example if it's possible .
@OscarVeliz3 жыл бұрын
I have a video on Newton-Bisection Hybrid kzbin.info/www/bejne/fHWWc4OKgqx9mtU which includes accompanying code although not in C. One of the books I reference in the video does give C code.
@tac62764 жыл бұрын
So whenever we find the tangent line to the point X, the next X should be at the point where the tangent intersects the x-axis?
@OscarVeliz4 жыл бұрын
Yes and I have code that will plot this for you on GitHub.
@komaang31666 жыл бұрын
i like all your videos.. how many videos in total have you posted please?
@OscarVeliz6 жыл бұрын
I have posted 7 videos. You can find them all on this playlist kzbin.info/www/bejne/g52zkIpjpMeohMk
@komaang31666 жыл бұрын
Great I've viewed all of them. Very very helpful!! Can you do one also for Muller's method if you have some time..?
@OscarVeliz6 жыл бұрын
I am glad these videos helped you. I do plan on making more videos, I'll add Muller's method to the list, however my priority at the moment is completing my dissertation. A quick note on Muller's. Recall that Secant method uses 2 points to create a line that crosses the x-axis. Where it crossed was your next x point. Similarly Muller's uses 3 points to create a curve, specifically a parabola, that usually crosses the x-axis at 2 spots. From those two points your new x will be the one where your function at that point is closest to zero. You'll then use that new x point, plus the last two of the three curve points, to make your new curve until you find the root.
@komaang31666 жыл бұрын
Alright ill try that out. Your help is much appreciated. All the best in your dissertation.
@OscarVeliz6 жыл бұрын
I made a video on Muller's Method. Hopefully you'll still find it useful three months after asking for it kzbin.info/www/bejne/jnqsdp2tqdCChMU
@بیرکاریفێربە-ك2ت6 жыл бұрын
Please,how do fined xo???
@OscarVeliz6 жыл бұрын
The technical answer is to pick a value in the neighborhood of your root. Of course this would mean knowing the neighborhood of your root. You can always try graphing to find a close guess. Alternatively you could widen the interval of convergence which I have a video on kzbin.info/www/bejne/sKq7g6Juhs-dZqM which will allow a larger domain of starting values.
@kikokimo26 жыл бұрын
And what about the convergence? Is there something like g'(x) < 1? And how to calculate, after how many iterations it converges for a specific function? Like the bisection method?
@OscarVeliz6 жыл бұрын
Newton's Method is considered "open" unlike Bisection, False Position, or Brent's Method which are "closed" inside an interval. It doesn't have a guarantee of convergence unless you find the interval of convergence which I have a video on kzbin.info/www/bejne/sKq7g6Juhs-dZqM
@kikokimo26 жыл бұрын
Oscar Veliz Wow! Never thought of an answer so fast, as the video is old! Thank you so much for replying! Gonna check it out tomorrow when I wake up and let you know my thoughts.
@OscarVeliz6 жыл бұрын
I do my best to respond to comments. I've been trying to respond to one you left earlier on Fixed Point but KZbin isn't showing it to me. I look forward to your thoughts on the video.
@kikokimo26 жыл бұрын
And you're serving your "customers" so good I find! Thanks a lot for that! The question was about, how to come that root of "1.618" to test with it g'(x) (convergence test)! How to guess that, if we are actually "searching" for that root, and trying to see if the Fixpoint iteration converges? PS: The answer in the FAQ didn't help unfortunately.
@OscarVeliz6 жыл бұрын
Note that it isn't g'(x) test but g'(r) test so it is better to think about it as "will this function converge to this root?" and even then, I wrote an example of a function failing the test but still converging so the test isn't so black and white. All it says is that if g'(r)
@munydoggy11 жыл бұрын
how do you pick x1 sir?
@Crossfire921111 жыл бұрын
I believe you enter the value in the provided function, and see if the solution is close to the root ( close to F(x) = 0 ) It is an initial approximation