Skip to content

KZHU.ai 馃殌

Into the Unknown

Menu
  • 馃搱 Discrete Optimization
    • Mathematics
    • Computer Science
    • Cryptography
    • C++
  • 鈿涳笍 Quantum Computing
    • Physics
    • Blockchain
  • 馃 Machine Learning
    • TensorFlow
    • Python
  • 馃洶 Data Science
    • Statistics
    • Matlab
  • 馃對 Hybrid Cloud
    • Kubernetes
    • Golang
    • Web
  • 馃搱 Business
    • MBA @ Gies
    • Six Sigma
  • 馃彟 Finance
    • Law
    • Economics
Menu
Fourier series

The Diffusion Equation of a Dye

Posted on December 9, 2021October 20, 2022 by keslerzhu

Fourier Series Sometimes complicated motions can actually be composed of motions of many different frequencies. The type of mathematical analysis that’s useful is called Fourier series. Fourier series is a way of representing a function – an infinite series of cosine and sines. You can view these as a linear superposition of waves of various frequencies. We use orthogonality…

Read more
System of linear first order ODEs, Distinct real eigenvalues

Systems of Differential Equations

Posted on December 6, 2021October 22, 2022 by keslerzhu

Systems of Homogeneous Linear First-order ODEs The system of linear first order homogeneous equations can be written in matrix form. To solve it we’re going to use An ansatz X(t) = V e位t . We’re going to look for solutions of the ansatz. The principle of superposition. When we find solutions of the ansatz, we’ll multiply…

Read more
Certificate Corporate & Commercial Law II: Business Forms, Financing & Governmental Regulation

My #78 course certificate from Coursera

Posted on December 5, 2021November 15, 2022 by keslerzhu

Corporate & Commercial Law II: Business Forms, Financing & Governmental RegulationUniversity of Illinois at Urbana-Champaign University of Illinois offered lots of amazing business courses and this is one of them. This course first introduces various forms of business, among which LLC (Limited Liability Company) interests me a lot, which is quite modern and essentially a…

Read more
Double triple integrals, Polar coordinates

Polar, Cylindrical, Spherical Coordinates

Posted on December 4, 2021November 14, 2022 by keslerzhu

Multidimensional Integration In Vector Calculus, we have to worry about integrating over two or three variables: double integrals or triple integrals. Double integral can be interpreted as a volume, like a single integral is the area under the curve. When the limits don’t depend on any variable, and we could do integrals separately. Polar coordinates Polar coordinates…

Read more

Branch-and-Bound & Heuristic Algorithms

Posted on December 2, 2021June 5, 2023 by keslerzhu

In some cases, variables must take integer values, or binary values. Formulating and solving the models with integer variables is integer programming. There are mainly 2 methods to solve it: The branch-and-bound algorithm finds an optimal solution for an integer program. Essentially, it decomposes the integer program into multiple linear programs, then solves all of…

Read more
Laplace transform

Laplace Transform and Series Solution Method

Posted on December 1, 2021October 19, 2022 by keslerzhu

Laplace transform Laplace transform is a technique for solving differential equations. By using the Laplace transform you can convert a differential equation into another space where the equation is easier to solve. Laplace transform is a linear transformation and it is invertible. The strength of the Laplace transform technique, is to solve the differential equations where you…

Read more
Certificate Understanding and Visualizing Data with Python

My #77 course certificate from Coursera

Posted on November 30, 2021March 24, 2024 by keslerzhu

Understanding and Visualizing Data with PythonUniversity of Michigan This is a fantastic statistics course taught in the setting of Python programming language. It astonishes me that the professor did a cartwheel at the beginning, very impressive. The course mainly focus on the fundamentals of statistics. After the lecture of concepts, there are hands-on videos tutoring…

Read more
Partial derivatives, Least squares, Chain rule, Triple product rule

From Partial Derivatives to Maxwell’s Equations

Posted on November 29, 2021October 22, 2022 by keslerzhu

Partial derivatives Partial derivative is to differentiate functions of multiple variables. Assume a function f = f(x, y), you are differentiating f with respect x, that is the usual definition of a derivative of a function of one variable, but y is held constant. There is something called mix partial. It does not depend on…

Read more

Logic for Economists

Posted on November 27, 2021October 20, 2022 by keslerzhu

Propositional Logic A proposition (often denoted by capital letters P, Q, etc) is a statement, that can be either true or false. Its negation 卢P is obtained by prepending “it is not true that …” to P. If you negate twice, you get P back again: 卢(卢P) = P . Two propositions are equivalent P…

Read more
Inhomogeneous linear differential equations. Exponential functions. Sine or Cosine (Part A).

Inhomogeneous Linear Differential Equations

Posted on November 24, 2021October 19, 2022 by keslerzhu

The general form of inhomogenous linear differential equations is: We need 2 initial conditions x(0) = x0, x'(0) = u0 to have a unique solution, there is a 3-step method to solve it: Solve the homogeneous equation, where g(t) = 0, to find the general solution to the homogeneous equation:xh(t) = C1 x1(t) + C2…

Read more

The Simplex Method

Posted on November 17, 2021June 5, 2023 by keslerzhu

The simplex method is the most fundamental tool in linear programming, it is a single algorithm that is able to solve any kinds of linear program regardless of its format, number of variables and constraints. We firstly transform the linear program to a standard form, then we focus on the standard form. The idea of…

Read more

Gross Income for Individuals

Posted on November 17, 2021November 10, 2022 by keslerzhu

Gross Income Gross income is all income from whatever source defined, it includes income realized in any form whether in money, property or services. If receive property or services, use Fair Market Value. Taxpayer recognize gross income when: They receive an economic benefit Increase in net worth (assets minus liabilities) Borrowed funds represent a liability,…

Read more
Certificate Six Sigma Principles

My #76 course certificate from Coursera

Posted on November 14, 2021November 1, 2022 by keslerzhu

Six Sigma PrinciplesUniversity System of Georgia There are criticisms of Six Sigma, sure is that it is not suitable for every company and industry. Some people like it, some don’t. But still, there’s no doubt how ubiquitous and popular it is. To those who work in a gigantic organization, Six Sigma shall not be unfamiliar….

Read more
Euler method for higher-order ODEs. The principle of superposition. The Wronskian.

Homogeneous Linear Differential Equations

Posted on November 14, 2021October 19, 2022 by keslerzhu

Linear homogeneous differential equation is the second-order ODEs that has the form below, It is important that the function p and q do not depend on x and any of its derivatives: A second-order homogeneous ODE with constant coefficients takes the form below, where a, b and c are constants. Euler Method for Higher-Order ODEs…

Read more
Euler method. Runge-Kuta methods. Separable first-order ODEs.

First-Order Differential Equations

Posted on November 12, 2021October 19, 2022 by keslerzhu

Euler Method Euler method is a very simple numerical method that can be used to solve differential equations. For example dy / dx = f(x, y) , there is usually no such a thing as an analytical solution, so one has to solve numerically with an initial condition y(x0) = y0 . Numerical methods approximate…

Read more

Posts pagination

  • Previous
  • 1
  • …
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • …
  • 28
  • Next

American Contract Law I Andrew Ng Anna Koop Brenda Gunderson Christopher Millard Computer Communications Specialization Cryptography Economics of Money and Banking Evgenii Vashukevich Garud Iyengar Ivan Vybornyi Jeffrey Chasnov John Daily Jonathan Katz Kevin Webster Ling-Chieh Kung Machine Learning: Algorithms in the Real World Martin Haugh Mathematics for Engineers Specialization Matthew Hutchens Michael Donohoe Michael Fricke Microsoft Azure Fundamentals AZ-900 Exam Prep Specialization Operations Research (3): Theory Perry Mehrling Petro Lisowsky Physical Basics of Quantum Computing Practical Reinforcement Learning Rebekah May Search Engine Optimization (SEO) Specialization Sergey Sysoev Statistical Thermodynamics Specialization Statistics with Python Specialization Taxation of Business Entities I: Corporations TensorFlow 2 for Deep Learning Specialization U.S. Federal Taxation Specialization Wounjhang Park Xiaobo Zhou Yi Wang 小褘褋芯械胁 小械褉谐械泄 小械褉谐械械胁懈褔

Subscribe to our newsletter!

© 2025 KZHU.ai 馃殌 | Powered by Superbs Personal Blog theme

Privacy Policy - Terms and Conditions