Tag: Advanced Excel

  • Numerical Solutions to the Logistic Equation: Exploring Population Models in Spreadsheets

    Introduction The logistic equation is a fundamental mathematical model used to describe population growth in a constrained environment. It was first proposed by Pierre-François Verhulst in 1838 and is expressed as: Here, P represents the population size at time t, r is the intrinsic growth rate, and K is the carrying capacity of the environment,…

  • The Power of Differential Equations: A Backbone of Science and Engineering

    Differential equations, mathematical equations that relate a function and its derivatives, are the cornerstone of many scientific and engineering disciplines. They provide a powerful tool for modeling and understanding complex systems, from the laws of physics to the dynamics of biological populations. In physics, differential equations are used to describe the motion of objects, the…

  • Mastering XLOOKUP: The Ultimate Lookup Function for Scientists and Engineers

    Oftentimes, data is stored in tables and frequently needs to be accessed. Take, for example, this data set (taken from kaggle.com) that lists the refractive indices of glass as a function of the percentage of the various elements present in it. Imagine needing to quickly look up the elements of a glass with a particular…

  • Number Series in Excel

    Number series are important in many areas of mathematics (which in turn forms the backbone of various other fields, such as Physics and Engineering) for the evaluation of transcendental functions, integrals and differential equations. More often than not, the sum of a series represents an approximation of the function. For example, the value of the…

  • VBA Loops

    VBA loop structures are similar to those of other programming languages. Looping is one of the few things that is extremely difficult to achieve with pure Excel alone. An If… Then statement, for instance, can be written within Excel and comparable results can be achieved. Loops, on the other hand, can be a lot trickier,…