Now showing items 1-20 of 110

    • 1.1 - Getting Started with Excel 

      Shams El-Din El-Fouly; Siddharth Misra (6/1/18)
      In this lesson you'll learn how to setup Excel for VBA programming, explain the most common features of the interface and how to save an Excel sheet with a macro program
    • 1.2 - Functions & Variables 

      Shams El-Din El-Fouly; Siddharth Misra (6/4/18)
      In this lesson you'll learn about the two possible programs written in VBA, functions and subroutines in addition to the use of variables in a VBA program
    • 1.3 - ForNext & Dowhile Loops 

      Shams El-Din El-Fouly; Siddharth Misra (6/5/18)
      In this lesson you'll learn about the repetition structure in VBA. This will include the ForNext Loop and the DoWhile Loop
    • 1.4 - Nested Loops 

      Shams El-Din El-Fouly; Siddharth Misra (6/6/18)
      In this lesson you'll learn about how created a nested loop where a loop is imbedded within another loop
    • 1.5 - If-Then-Else 

      Shams El-Din El-Fouly; Siddharth Misra (6/6/18)
      In this lesson you'll learn about the decision structure of VBA Programming and that the if-then-else statement.
    • 1.6 - Factorial 

      Shams El-Din El-Fouly; Siddharth Misra (6/7/18)
      In this lesson we'll use what we have learned previously to create a factorial code capable of generating the factorial of any number
    • 1.7 - Area & Perimeter of a Square 

      Shams El-Din El-Fouly; Siddharth Misra (6/7/18)
      In this lesson we'll use what we have learned previously to create a code to find which of 7 squares of different side length has magnitude of area equal to magnitude of perimeter
    • 1.8 - Inbuilt Functions 

      Shams El-Din El-Fouly; Siddharth Misra (6/12/18)
      In this lesson you'll learn about some the most useful and common EXCEL/VBA inbuilt functions used in numerical methods
    • 2.1 - Taylor Series & Exp(x) 

      Shams El-Din El-Fouly; Siddharth Misra (6/15/18)
      In this lesson you'll learn about what Taylor Series are and how to approximate the Exp(x) function using Taylor Series
    • 2.2 - Taylor Series & f'(x) 

      Shams El-Din El-Fouly; Siddharth Misra (6/15/18)
      In this lesson you'll learn about how to approximate derivatives using Taylor Series
    • 2.3 - Taylor Series of Exp(3x) around 2 

      Shams El-Din El-Fouly; Siddharth Misra (6/18/18)
      In this lesson you'll learn about how to develop a VBA code to approximate Exp(3x) around a = 2
    • 3.1 - Bisection Method 

      Shams El-Din El-Fouly; Siddharth Misra (6/21/18)
      In this lesson you'll learn about the different types of Root of Equations techniques, the bisection method and how to develop a VBA code to implement this technique to any desired approximate error.
    • 3.2 - False Position & How it Compares to Bisection Method 

      Shams El-Din El-Fouly; Siddharth Misra (6/21/18)
      In this lesson you'll learn about the False Position method, how to develop a VBA code to implement this technique to any desired approximate error and how the False Position compares to the Bisection Method
    • 3.3 - Newton Raphson & Secant Methods & How they compare 

      Shams El-Din El-Fouly; Siddharth Misra (6/21/18)
      In this lesson you'll learn about the Newton Raphson and secant Techniques, how to develop a VBA code to implement these techniques to any desired approximate error and how the open methods compares to both bisection and ...
    • 3.4 - Newton Raphson using different guesses 

      Shams El-Din El-Fouly; Siddharth Misra (6/26/18)
      In this lesson you'll learn about the effect of using different educated guesses on the output root of the function
    • 3.5 - Multiple Roots 

      Shams El-Din El-Fouly; Siddharth Misra (6/28/19)
      In this lesson you'll learn about the Modified Newton Raphson Method to deal with Multiple Roots and How to develop a VBA code to implement this technique to any desired approximate error.
    • 3.6 - Right Circular Cone 

      Shams El-Din El-Fouly; Siddharth Misra (6/27/18)
      In this lesson you'll learn about how to apply the Newton Raphson Technique to find the root of a 2D right circular cone function.
    • 3.7 - Goal Seek and Solver 

      Shams El-Din El-Fouly; Siddharth Misra (7/6/18)
      In this lesson you'll learn about how to use Excel's inbuilt root finding functions–goal seek for simple 1D function and Solver for multivariable functions.
    • 4.1 - Vectors, Matrices & Arrays 

      Shams El-Din El-Fouly; Siddharth Misra (6/26/18)
      In this lesson you'll learn about what an array is and the difference between a vector and a matrix. You’ll then create a vector to store ten elements and display it back onto an Excel sheet. Finally, you’ll learn to create ...
    • 4.2 - Addition, Multiplication & Transposition of Matrices 

      Shams El-Din El-Fouly; Siddharth Misra (6/28/18)
      In this lesson you'll learn about addition, multiplication and transposition to two matrices in addition to what a Principle Diagonal, Principal anti-diagonal, identity and unit matrices