Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Numbers
One. Two. Three. Numbers have been a part of our lives since we were kids. Numbers are actually very important in programming (and in Python) these days. This clip is from the chapter "Beginner-friendly Python" of the series "Python for...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Create an Object (Instance) from Your Class
This video demonstrates how to create object (instance) from a class. This clip is from the chapter "Extra: Python OOP" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a...
Curated Video
Learn Go in 3 Hours - If/Else and For Statements
The if/else statement is present in many languages, as is the for statement. Go provides a unique twist on both. • This video covers the if/else and for statements in Go, how they are both similar and different to the same statements in...
Brian McLogan
Three Mistakes Students make when finding the inverse of a function
👉 In this video I will show you the three most common mistakes students make when they are finding the inverse of a function
Curated Video
C++ for Beginners - Bitwise Operators
This lesson examines Bitwise operators, or, ways to manipulate binary numbers. This clip is from the chapter "Binary Operations" of the series "C++ for Beginners".Binary Theory
Brian McLogan
Find the missing side of a oblique triangle using law of sines
👉 Learn how to solve for the length of the sides and the measures of the angles of a triangle using the law of sines. The law of sines is used in determining the length of the opposite side to a known angle measure or the measure of the...
Brian McLogan
Verifying two linear equations are inverses of each other
👉 Learn how to show that two functions are inverses. The composition of two functions is using one function as the argument (input) of another function. In simple terms composition of two functions is putting one function inside another...
Brian McLogan
Complete the square by factoring out a two to label the vertex
👉 Learn how to identify the vertex of a parabola by completing the square. A parabola is the shape of the graph of a quadratic equation. A quadratic equation can be written in the standard form (i.e. in the form y = ax^2 + bx + c) or it...
Brian McLogan
Write the function f(x) given transformations
Write the function f(x) given transformations
Brian McLogan
Master How to find the distance between two points
Master How to find the distance between two points
Brian McLogan
Write the rational expression in reciprocal function form
👉 Learn all about reciprocal functions. A reciprocal function is a function of the form f(x) = 1/x. The graph of a reciprocal function is composed of the vertical and the horizontal asymptotes and the points where the curve turns. For...
Brian McLogan
Write a polynomial when given a complex and real root
👉 Learn how to write the equation of a polynomial when given complex zeros. Recall that a polynomial is an expression of the form ax^n + bx^(n-1) + . . . + k, where a, b, and k are constants and the exponents are positive integers. The...
Brian McLogan
Zeros and multiplicity of a polynomial factoring by grouping
👉 Learn how to find all the zeros of a polynomial by grouping. A polynomial is an expression of the form ax^n + bx^(n-1) + . . . + k, where a, b, and k are constants and the exponents are positive integers. The zeros of a polynomial are...
Brian McLogan
Write the quadratic function given different transformations
Write the quadratic function given different transformations
Curated Video
Simplifying Algebraic Expressions (Example)
Simplify algebraic expressions by distributing and combining like terms.
Curated Video
PEP8 Guidelines Python Clean Coding - Code Layout
This video explains the major rules to align your code and how you will create your first project. This clip is from the chapter "PEP 8 Code Layout" of the series "PEP8 Guidelines: Python Clean Coding".This section explains the PEP8 code...
Curated Video
Applying the Distributive Property with Diagrams
In this video, students learn about the distributive property and how to apply it using diagrams. The teacher explains the concept of equivalent expressions and demonstrates how to expand and simplify expressions using blocks and visual...
Brian McLogan
How to Find Zeros, Multiplicity and End Behavior to Graph of a Polynomial
👉 Learn how to find all the zeros of a factored polynomial. A polynomial is an expression of the form ax^n + bx^(n-1) + . . . + k, where a, b, and k are constants and the exponents are positive integers. The zeros of a polynomial are the...
Curated Video
The Complete Java Developer Course: From Beginner to Master - Project - Working with Arrays
This video is the first project of this section where the program will prompt the user to input 5 integers. Then, it stores each of the integers in a regular built-in array. Finally, after the storing is completed, in a separate loop,...