Now showing items 1-20 of 46

    • Practice Problems in Biomedical Organic Chemistry: Self-Guided Problems and Answers for Students in Bioorganic and Organic Chemistry, Volume I 

      Carter, Adam; Culver, Tiffany; Cichewicz, Robert (2016-08)
      This problem set was developed to assist undergraduate students taking a one semester or two semester, non-majors course in organic chemistry. Students in these courses often come to organic chemistry from diverse backgrounds ...
    • What’s in Your Backyard?: A Curriculum Guide to Accompany The University of Oklahoma Citizen Science Soil Collection Program 

      Shelton, Maggie; Cichewicz, Robert (2018-08-08)
      This guide was designed to support educators by helping to integrate citizen science into the classroom environment. By including research about fungi in your classroom, you are helping to foster the development of scientific ...
    • Lab Manual for Nonmajors Biology 

      Hoefnagels, Mariëlle; Greenwood, Sarah (2019-02)
      Lab manual for use in college-level nonmajors biology courses. Lab manual includes lab safety guidelines and labs for process and tools of science; using the microscope; digestion; food microbiology; bacteria and disease; ...
    • 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.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.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.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.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
    • 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 ...
    • 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.
    • 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
    • 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.
    • 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.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.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