1/50
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Model
A simplified representation of a real-world system built to study, predict, or analyze its behavior.
Modeling
is the application of methods to analyze complex, realworld problems in order to make predictions about what might happen with various actions
Variables
These are the fundamental "parts" or "actors" within the model, representing physical things, concepts, or processes. These are elements that change.
Parameters
Constants that define the properties of a system and control how variables change.
Equations/Rules
Relationships that describe how variables change within a model.
Computational Model
A simplified representation of a real-world object, process, or system created using mathematical relationships and computational methods.
Deterministic Model
A model that always produces the same output when given the same input.
Stochastic / Probabilistic Model
A model that incorporates randomness or probability and may produce different outputs from the same input.
Static Model
A model that does not consider time and can be viewed like a snapshot or map.
Dynamic Model
A model in which time changes and the system evolves over time.
Continuous Model
A model in which time changes continuously and smoothly.
Discrete Model
A model in which time changes through incremental steps.
SIR Model
A mathematical model used to understand how a disease spreads through a population, consisting of Susceptible, Infected, and Recovered groups.
Susceptible (S)
The SIR population consisting of people who do not yet have the disease but can become infected.
Infected (I)
The SIR population consisting of people who currently have the disease and can spread it.
Recovered (R)
The SIR population consisting of people who have recovered from the disease.
Beta (β) / Infection or Transmission Rate
The SIR parameter representing the infection or transmission rate.
Gamma (γ) / Recovery Rate
The SIR parameter representing the recovery rate.
Simulation
The process of running a model to study system behavior under different conditions.
Verification
The process that determines whether a model's solution works correctly.
Validation
The process that determines whether the model addresses the correct problem and satisfies its requirements.
NumPy
A Python library for numerical and scientific computing that provides support for large multi-dimensional arrays and matrices.
SciPy
A Python library that builds on NumPy and provides algorithms and functions for advanced computational science, engineering, and applied mathematics.
Matplotlib
A Python plotting library used to create static, animated, and interactive plots.
Seaborn
A high-level statistical visualization library built on Matplotlib.
SimPy
A Python library for modeling and simulating systems in which events occur at discrete points in time.
TRUE
A model is an abstraction that focuses only on the key features of a real-world system relevant to a particular problem.
TRUE
Computational models allow researchers to evaluate different scenarios without directly experimenting on real-world systems.
TRUE
One purpose of computational modeling is to minimize the risks associated with real-world experimentation.
TRUE
A good computational model should be simple but realistic rather than unnecessarily detailed.
TRUE
Deterministic models are unable to represent uncertainty because they do not incorporate randomness.
TRUE
In the SIR model, the number of susceptible people generally decreases as the disease spreads.
TRUE
A higher infection rate β generally causes a disease to spread faster.
TRUE
A stochastic model can produce different outputs from the same input because uncertain events are involved.
FALSE
A static model explicitly represents how a system changes over time.
TRUE
A dynamic model can be compared to a movie because it represents changes over time.
TRUE
A discrete model represents changes in incremental steps, while a continuous model represents smooth change.
TRUE
Modeling is an iterative process in which models may be built, tested, refined, and reapplied.
TRUE
Simplifying assumptions are sometimes necessary because considering every detail can make a model too complex to solve or run efficiently.
TRUE
Verification determines whether the solution works correctly, while validation determines whether the correct problem is being solved.
TRUE
Maintaining a model may require updating it when new information or changing conditions affect the system.
Variables, Parameters, Equations/Rules
The three key components of a model.
Describe how a system works; Explain relationships among variables; Predict future behavior; Analyze different situations; Support scientific and engineering decisions; Test "what-if" scenarios safely
Six major purposes of using models.
Simple but realistic; Accurate; Reliable; Easy to understand; Based on valid assumptions; Flexible enough for different situations
Six characteristics of a good computational model.
No randomness; Predictable results; Exact mathematical relationships; Easier to analyze
Four characteristics of a deterministic model.
Uses probability; Includes random variables; Models uncertainty; Produces multiple possible outcomes
Four characteristics of a stochastic model.
Analyze the problem; Formulate a model; Solve the model; Verify and interpret the model's solution; Report on the model; Maintain the model
Six steps of the modeling process in order.
Gather data; Make simplifying assumptions and document them; Determine variables and units; Establish relationships among variables and sub-models; Determine equations and functions
Five activities involved in Formulating a Model.
Algebra; Calculus; Graphs; Computer programs; Computer packages
Five techniques/tools used to solve a model.
Analysis of the problem; Model design; Model solution; Results and conclusions
Four components of a model report.
NumPy; SciPy; Matplotlib; Seaborn; SimPy
Five Python libraries for computational science presented in the chapter.