Quoc Dat Phung
Quoc Dat Phung
  • 212
  • 1 193 605
Prove 2n^3 - 7n + 1 is Ω(n^3) - Big Omega Example
In this video, I will show you how to prove or disprove Big Omega Ω. For example, you are asked to prove that a function 2n^3 - 7n + 1 is Ω(n^3). By the definition of big O, f(n) is O(g(n)) if you can find a positive constant c and a positive integer nₒ such that f(n) is less than or equal to c times g(n), for all n is greater than nₒ. By the definition of big Omega, f(n) is Ω(g(n)) if f(n) is greater than or equal to c*g(n)
Knowing how to prove that something is Big O or not Big O is an important skill that Computer Science CS and Math students need to know about time complexity and growth of functions. It is likely that you will encounter this topic in your typical Data Structures, Discrete Mathematics, or Analysis of Algorithm courses at University.
I will also how you how to prive Big Omega Ω or Big Theta θ. If you enjoyed this video, please don't forget to comment down below and also subscribe if you haven't already!
Переглядів: 55

Відео

Integral of sin(3x)
Переглядів 55514 годин тому
In this video, I will show you how to solve the indefinite integral of sin(3x) using u substitution. This is an important topic for students taking Calculus, whether it is AP Calculus or Calculus in university. The idea behind u-substitution is to simply the integrand. For example, we can simplify 1/(2x 4) with 1/u where u=2x 4. The second step is to differentiate u with respect to x, then plug...
Stack Implementation using Array | Data Structure and Algorithms
Переглядів 18814 днів тому
In this video, I will explain stacks often taught in a data structures and algorithms course. Stacks can be implemented with an array or a linked list. If a stack is implemented by an array, it is called an ArrayStack. But if the stack is implemented by a linked list, then it is called a LinkedStack. Stacks have a special property called FILO, or First in Last Out. I show plenty of examples in ...
Deriving the Quadratic Formula (Proof Video)
Переглядів 64621 день тому
In this video, I will show you the proof or derivation of the quadratic formula. The quadratic equation is ax^2 bx c = 0, where a != 0. If you want to solve for x, the formula is x = (-b - sqrt(b^2 - 4ac))/2a. In this video, I will show you how to prove the quadratic formula or show you how to derive the quadratic formula. You will need to complete the square. This is a useful topic that math s...
Array Operations - Delete/Remove Data from an Array
Переглядів 53Місяць тому
In this video, I will show you how to remove or delete data into an array at the beginning, middle, or at the end of an array. Basically you can re move data at a specific index. This is an important skill that many Computer Science students need to have. You will learn this in a typical introductory programming course or in Data Structures and Algorithms course. Full code: drive.google.com/dri...
Array Operations - Inserting Data into an Array
Переглядів 55Місяць тому
In this video, I will show you how to insert or add data into an array at the beginning, middle, or at the end of an array. Basically you can add data at a specific index. You need to check if the array has enough space for you to insert an element. The way to check it is to see if the number of elements (aka the size of the array) is equal to the length of the array (how many slots inside the ...
List Implementation using Array | Data Structures and Algorithms
Переглядів 92Місяць тому
In this video, I will show you how to implement or build a list using an array. You may have known Lists from Python and Arrays from Java, but how can you implement a list using a single array, if the default data structure in the language you're using isn't list? The difference between a list and an array is that a list can automatically resize where as the size of an array is predefined and s...
How to Reverse an Array or String Algorithm | Computer Science
Переглядів 49Місяць тому
In this video, I will show you how to reverse an array or string. This is an important algorithm in Computer Science that students will learn in a typical "Data Structure and Algorithms" course. I will demonstrate how to reverse an even-length or odd-length array, list, or string, then I will code the algorithm using Python. You should be able to use the Python code to write it in Java, C , or ...
How to Count Occurrences of an Element in a List/Array/String
Переглядів 159Місяць тому
In this video, I will show you how to count the occurrences of an element or value inside a string, list, or array. We will use linear search to do this. First, we initialize a counter variable to zero. We traverse through the array. When we encounter that element or value, we increment the counter variable. This is an important computer science concepts that students need to know. In the next ...
Differences between Tight Big O, Tight Big Omega, and Tight Big Theta
Переглядів 2912 місяці тому
In this video, I will explain the differences between Tight Big O, Tight Big Omega, and Tight Big Theta. I will show you how to prove or disprove Big Omega Ω. For example, you are asked to prove that a function 2n^3 - 7n 1 is Ω(n^3). By the definition of big O, f(n) is O(g(n)) if you can find a positive constant c and a positive integer nₒ such that f(n) is less than or equal to c times g(n), f...
Stacks Explained in 60 seconds (FILO) - Data Structures and Algorithms
Переглядів 642 місяці тому
In this video, I will explain stacks often taught in a data structures and algorithms course. Stacks can be implemented with an array or a linked list. If a stack is implemented by an array, it is called an ArrayStack. But if the stack is implemented by a linked list, then it is called a LinkedStack. Stacks have a special property called FILO, or First in Last Out. I show plenty of examples in ...
Find the Area of the Ellipse using Integral Calculus
Переглядів 5332 місяці тому
In this video, I will show you how to prove the area of an ellipse using calculus integration. Recall that an ellipse is a regular oval shape, traced by a point moving in a plane so that the sum of its distances from two other points (the foci) is constant, or resulting when a cone is cut by an oblique plane which does not intersect the base. The area formula of an ellipse is A = pi*ab, where a...
Prove A = πr^2 using Integral Calculus - Area of the Circle Proof
Переглядів 6762 місяці тому
In this video, I will show you how to prove that the area of a circle is A = p*r^2 (pi r squared where r is the radius) using integral calculus. This is an important topic for students in high school or in calculus as the exam may require you to write the proof for the area of the circle formula. Please don't forget to share if you find this video helpful and also subscribe to support my channel!
Prove the Area of a Triangle using Integral Calculus
Переглядів 5543 місяці тому
In this video, I will show you how to prove the area of a triangle using integral calculus. The area of a triangle is the one over two times the base times the height. First, you use the area formula under a function, which is equal to the integral from a to b of f(x), where f(x) is a curve of a straight line. Then, we evaluate that integral. This is an important concept to master for Calculus ...
Integral of cos(2x)
Переглядів 3113 місяці тому
In this video, I will show you how to solve the indefinite integral of cos(2x) using u substitution. This is an important topic for students taking Calculus, whether it is AP Calculus or Calculus in university. The idea behind u-substitution is to simply the integrand. For example, we can simplify 1/(2x 4) with 1/u where u=2x 4. The second step is to differentiate u with respect to x, then plug...
Derive the Area of a Square using Integral Calculus (Circular Proof)
Переглядів 6133 місяці тому
Derive the Area of a Square using Integral Calculus (Circular Proof)
Derive the Area of a Rectangle using Integral Calculus (Circular Proof)
Переглядів 2513 місяці тому
Derive the Area of a Rectangle using Integral Calculus (Circular Proof)
Trigonometric Substitution (3 Formulas) - Calculus
Переглядів 2103 місяці тому
Trigonometric Substitution (3 Formulas) - Calculus
Integral of sqrt(x² - 2x)
Переглядів 1023 місяці тому
Integral of sqrt(x² - 2x)
Solving the Integral in MY HERO ACADEMIA - Calculus Anime
Переглядів 1 тис.4 місяці тому
Solving the Integral in MY HERO ACADEMIA - Calculus Anime
Integral of sqrt(3-7x²) using trigonometric substitution
Переглядів 2784 місяці тому
Integral of sqrt(3-7x²) using trigonometric substitution
Integral of (x² - 1)^-1.5 with trigonometric substitution
Переглядів 2334 місяці тому
Integral of (x² - 1)^-1.5 with trigonometric substitution
Integration By Parts - Calculus I
Переглядів 4464 місяці тому
Integration By Parts - Calculus I
Variables and Data Types in Python are Easy 🐍
Переглядів 1015 місяців тому
Variables and Data Types in Python are Easy 🐍
How to Get User Input in Python (very easy) 🐍
Переглядів 2095 місяців тому
How to Get User Input in Python (very easy) 🐍
Commenting in Python (Multi-line) 🐍
Переглядів 1,4 тис.5 місяців тому
Commenting in Python (Multi-line) 🐍
Integral of cot(x)ln(sinx) using Substitution
Переглядів 1625 місяців тому
Integral of cot(x)ln(sinx) using Substitution
How to Prove or Disprove Big Ω - Introduction to Computer Science
Переглядів 2,8 тис.6 місяців тому
How to Prove or Disprove Big Ω - Introduction to Computer Science
Print() and F-Strings in Python Explained ✔️
Переглядів 1136 місяців тому
Print() and F-Strings in Python Explained ✔️
Python for Beginners - Learn Python in 1 Hour (2024)
Переглядів 1,2 тис.6 місяців тому
Python for Beginners - Learn Python in 1 Hour (2024)

КОМЕНТАРІ

  • @NehaTheBee
    @NehaTheBee 19 годин тому

    It was really very helpful. Thanks for uploading the video with an easy solution

  • @RofhiwaMatshete
    @RofhiwaMatshete День тому

    My friends are arguing about where you come from. Are you Canadian or Chinese?

  • @harishnu_notaxid
    @harishnu_notaxid День тому

    damn man thank you

  • @James-mv1ho
    @James-mv1ho 2 дні тому

    youre my goat

  • @emilymoigenyanchera1908
    @emilymoigenyanchera1908 3 дні тому

    The best video i have ever come across,best explanation,love it from kenya

  • @aryannamonroe3293
    @aryannamonroe3293 3 дні тому

    Thank you so much, this is helping me understand it much better just in time for my exam too!!

  • @anooshiepooshie
    @anooshiepooshie 3 дні тому

    I love you bro. Everything made sense.

  • @LevySkulk
    @LevySkulk 3 дні тому

    Awesome dude, really glad to find a video that focuses on the mathematics and isn't just a conceptual overview.

    • @QuocDatPhung
      @QuocDatPhung 3 дні тому

      Thank you Levy Skulk! I'm glad you like my explanation! If you know anyone who needs help with this class, kindly share it with them and also subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @inevitavel2656
    @inevitavel2656 4 дні тому

    Muito obrigado

  • @jelmero3090
    @jelmero3090 5 днів тому

    This one is also pretty easy without substitution

  • @aleareyatol
    @aleareyatol 6 днів тому

    How about if there is a 9 elements, is it still the same process?

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      Yes, the process will be the same

  • @emilyberry360
    @emilyberry360 6 днів тому

    THANK YOU SO MUCH!!!!!! 😃

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      You're very welcome Emily :D! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

    • @emilyberry360
      @emilyberry360 6 днів тому

      @@QuocDatPhung I subscribed and will recommend you

    • @QuocDatPhung
      @QuocDatPhung 5 днів тому

      @@emilyberry360 Thank you very much!

  • @BubsGirl291
    @BubsGirl291 6 днів тому

    My prof attempted to explain quick sort in class to us and I left very confused. This was so clear and easy to understand, thank you for helping it click in my brain! Kudos to you sir!

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      Thank you BubsGirl! I'm glad you like my explanation! If you know anyone who needs help with this class, kindly share it with them and also subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @Meagan-03
    @Meagan-03 7 днів тому

    This was super helpful, thank you!

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      Thank you Meagan! I'm glad you like my explanation! If you know anyone who needs help with this class, kindly share it with them and also subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @hermanporawi5501
    @hermanporawi5501 8 днів тому

    ❤❤❤thanks

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      Thank you HermanPorawi! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @veronicanartatez3278
    @veronicanartatez3278 8 днів тому

    bro is helping me pass csi2110 right now

  • @manansaini-p6d
    @manansaini-p6d 8 днів тому

    thanks

  • @AshleeyBunnie
    @AshleeyBunnie 9 днів тому

    penmanship, explanation, everything💯💯💯

    • @QuocDatPhung
      @QuocDatPhung 6 днів тому

      Thank you Ashleey! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @subornaakter8309
    @subornaakter8309 9 днів тому

    When 1- why not 1+. Please answer this tomorrow i Have an exam

    • @QuocDatPhung
      @QuocDatPhung 9 днів тому

      Which problem are you referring to? Please give the timestamp (e.g 5:55)

    • @subornaakter8309
      @subornaakter8309 9 днів тому

      ​@@QuocDatPhung20:15

    • @QuocDatPhung
      @QuocDatPhung 9 днів тому

      @@subornaakter8309 The integral goes from 0 to 1 right? So which side are we approaching 1 from? The left or the right? Well, we start from 0 and we get closer and closer to 1 on the left side. In calculus we indicate this as 1 and the minus sign at the top. That's just what it means. Does it make sense?

    • @subornaakter8309
      @subornaakter8309 9 днів тому

      @@QuocDatPhung yes,crystal clear.thank you

    • @QuocDatPhung
      @QuocDatPhung 9 днів тому

      @@subornaakter8309 You're welcome Subornaakter! And good luck on your exam! If you know anyone who needs math help, kindly share with your classmates to help them. You can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @aditisadhoo
    @aditisadhoo 10 днів тому

    7cm2

  • @centricpants1567
    @centricpants1567 10 днів тому

    Bro, please make more algorithm videos. I have a course on Algorithm Analysis and your videos on Big O, Omega etc were amazing. Me and my classmates would really appreciate it

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      Thank you for your kind words Centric! You can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @Wolf_143YT
    @Wolf_143YT 10 днів тому

    THank you so much bro, i Can Pass my Exam now

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      Great job! Don't forget to subscribe and share! It means a lot!

    • @Wolf_143YT
      @Wolf_143YT 9 днів тому

      @@QuocDatPhung I did!

  • @JUANjuan871ju
    @JUANjuan871ju 10 днів тому

    anh giai thich de hieu : D

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      Cám ơn em! Em đừng quên chia sẻ cho các bạn khác học nhé. Playlist for Computer Science: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @bilalsultan1130
    @bilalsultan1130 10 днів тому

    Great explanation. And very quickly. Best explanation I've ever seen. I also subscribed your channel.

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      Thank you so much! If you know anyone taking the class who needs it, please kindly share it with them ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @sa_0515
    @sa_0515 11 днів тому

    Greetings from the University of Florida. Have a Midterm in Calc 2 in 2 days 😅 Thank you a lot

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      Thank you Sa0515! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @w3bPr0xy
    @w3bPr0xy 11 днів тому

    In 2 minutes you explained well what my professor struggled for in a semester.

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      Thank you so much! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @ttdddaa
    @ttdddaa 11 днів тому

    thanks!!

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      You're welcome! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @subimurugan-zp3tx
    @subimurugan-zp3tx 11 днів тому

    How 273.15 came

  • @friedpotato6846
    @friedpotato6846 14 днів тому

    printing the little papers and putting them on the tables of ITI students is pretty smart honestly

    • @QuocDatPhung
      @QuocDatPhung 13 днів тому

      Thanks FriedPotato! I also have playlists for other courses like Data Structures and Calculus 2. You can find them in the playlists tab. If you know anyone who needs help in these courses, kindly share it to help other students as well!

  • @jinsuh5492
    @jinsuh5492 14 днів тому

    Thx helped a lot. Short and clear

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      Thank you JinSuh! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @jamesbradleydevomra9523
    @jamesbradleydevomra9523 16 днів тому

    6:39 - 07:00 thanks ! very useful

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      Thank you James! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @KKPMONSTAofficial
    @KKPMONSTAofficial 16 днів тому

    Good work

  • @Brandon-m8g
    @Brandon-m8g 17 днів тому

    🙏

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      Thank you Brandon! I'm glad you found my videos helpful! Please kindly share with your classmates to help them and subscribe to support me (it means a lot). As well, you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @rosariawellman4726
    @rosariawellman4726 17 днів тому

    Omg Thank You So Much!!!!

    • @QuocDatPhung
      @QuocDatPhung 17 днів тому

      You're welcome Rosaria Wellman! Please kindly share and subscribe (it means a lot) you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @someone-xm4ik
    @someone-xm4ik 18 днів тому

    Thank you so much! You explained the concept very simply. But I did not find the video for big theta.

    • @QuocDatPhung
      @QuocDatPhung 11 днів тому

      Thank you for your kind words! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @chriszostomemarc-adou7460
    @chriszostomemarc-adou7460 19 днів тому

    dommage pour moi c'est pas en anglais

    • @QuocDatPhung
      @QuocDatPhung 10 днів тому

      If you click on CC (captions) I think you should be able to convert it into French. You can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @nguyenduccc
    @nguyenduccc 20 днів тому

    Best explanation I've ever seen! he is a Chinese?? This video is very simply for beginer access to.

    • @nguyenduccc
      @nguyenduccc 20 днів тому

      Your name sounds Vietnamese but it's clearly very Chinese

    • @QuocDatPhung
      @QuocDatPhung 20 днів тому

      Thanks Duc! Don't forget to see my Merge Sort video! Also, please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @nazelibrahim9729
    @nazelibrahim9729 20 днів тому

    PERFECT

    • @QuocDatPhung
      @QuocDatPhung 20 днів тому

      Thanks NazeliBrahim! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @Catches-Tale
    @Catches-Tale 22 дні тому

    Thank you very much. I'm writing exam today on this

    • @QuocDatPhung
      @QuocDatPhung 21 день тому

      Thanks CatchesTale! Good luck! Also, please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @nhlayisohobyane5515
    @nhlayisohobyane5515 22 дні тому

    Thank you! This was so so so helpful!

    • @QuocDatPhung
      @QuocDatPhung 21 день тому

      Thank you Nhlayisohobyane! Please kindly share and subscribe (it means a lot) you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @nekotori7043
    @nekotori7043 22 дні тому

    Thank you Iron Man!

    • @QuocDatPhung
      @QuocDatPhung 21 день тому

      Thanks for your kind words! Please kindly subscribe and share with your classmates, it means so much!

  • @kevinlukhele5739
    @kevinlukhele5739 23 дні тому

    If you do not mind me asking, what is the reason behind splitting up the integral in the last example???

    • @QuocDatPhung
      @QuocDatPhung 21 день тому

      There's a vertical asymptote at x = 1, meaning when x = 1, the function has divide by 0. This is why you split the integral up, and you get from x=0 to x=1 and x=1 to x=3. Let me know if that makes sense!

    • @kevinlukhele5739
      @kevinlukhele5739 10 днів тому

      @@QuocDatPhung Thanks a bunch, it does.

  • @estelamino6356
    @estelamino6356 23 дні тому

    Thanks .

    • @QuocDatPhung
      @QuocDatPhung 21 день тому

      Thank you! Please kindly subscribe and share, it means a lot!

  • @vidurabandarake3857
    @vidurabandarake3857 23 дні тому

    thank you!

    • @QuocDatPhung
      @QuocDatPhung 20 днів тому

      Thank you! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @SystemsProjectEngineer
    @SystemsProjectEngineer 28 днів тому

    Excellent clear explanations.

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      Thank you Systems Project Engineer! Please kindly share and subscribe (it means a lot) you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

    • @SystemsProjectEngineer
      @SystemsProjectEngineer 27 днів тому

      @@QuocDatPhung I will and I will watch all the cal 2 and Python videos. I hope you make calculus 3 videos one day.

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      @@SystemsProjectEngineer Thank you so much! I'm glad you enjoyed! I will work on Cal 3 one day :)

    • @SystemsProjectEngineer
      @SystemsProjectEngineer 27 днів тому

      @@QuocDatPhung Thanks!

  • @ohhellnah4897
    @ohhellnah4897 28 днів тому

    Damn, I just found gold here! Your videos are so good sir. Keep it up 🔥🇻🇳

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      Thank you! Please kindly share with your friends and subscribe to support me (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html

  • @ZOEY123-t2f
    @ZOEY123-t2f 29 днів тому

    57 ig

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      Good job Zoey! Please kindly share and subscribe! It means a lot!

  • @daniel-vx9dk
    @daniel-vx9dk Місяць тому

    This is literally so helpful thank you so much most straightforward and simple explanation ever!

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      Thank you Daniel! Please kindly share and subscribe (it means a lot) you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @vinc8ntl8r
    @vinc8ntl8r Місяць тому

    Thank you very much 🙏🏻

    • @QuocDatPhung
      @QuocDatPhung 27 днів тому

      Thank you Vinc! Please kindly share and subscribe (it means a lot) you can find all of my Calculus II videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuCeO97iKt_Aibx-a938JA.html

  • @annarankin9103
    @annarankin9103 Місяць тому

    Thank you Quoc, this video has been very helpful.

    • @QuocDatPhung
      @QuocDatPhung 29 днів тому

      Thank you Anna! Please kindly share with your friends (it means a lot) ~ you can find all of my CS videos in this link: ua-cam.com/play/PLeTO6OT3-FKmuxOu4RtupTay1yrMp6QGC.html