business analytics final exam

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:58 AM on 5/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

classification tree

classifies a categorical outcome variable by splitting observations into groups via a sequence of hierarchical rules

2
New cards

data preparation definition

the manipulation of data with the goal of putting it into a form suitable for formal modeling

3
New cards

what is the step in data mining that includes addressing missing or erroneous data, reducing the number of variables, defining new variables, and data exploration

data preparation

4
New cards

overfitting

occurs when the analysist builds a model that does a great job of explaining the sample on data on which it is based based but fails to accurately predict outside the sample data

5
New cards

confusion matrix

displays a model’s correct and incorrect classification

6
New cards

estimation of continuous outcome example

determining a freshman’s first year GPA from their SAT score, high school GPA, and number of extracurriculars

7
New cards

observation

or record, is the set of recorded values of variables associated with a single entity and is displayed as a row of values in a spreadsheet or database in which the columns correspond to the values

8
New cards

what does the y-axis of a decile chart show?

ratio of decile mean to overall mean

9
New cards

goal seek (excel)

allows users to determine the value of an input cell that will cause the value of the related output sell to each some specified value

10
New cards

what does separating the parameters from the spreadsheet model do?

enables the user to update the model parameters without the risk of mistakenly creating an error in a formula

11
New cards

what is the mathematical expression for Total Revenue?

Total Revenue = Production Volume × Revenue per Unit

12
New cards

Navigation in a spreadsheet model can be facilitated by what?

using clear labels and proper formatting and alignment

13
New cards

what is a good way to proceed with the influence diagram building for a problem?

The influence diagram for a portion of the problem is built first and then expanded until the total problem is conceptually modeled

14
New cards

influence diagram

a visual representation that shows which entities affect others in a model

15
New cards

an arrow

the visual depiction of the influence in an influence diagram

16
New cards

make-versus-buy

a decision in which companies have to decide whether they should manufacture a product or outsource production to another firm

17
New cards

controllable input

An input to a simulation model that is selected by the decision maker

18
New cards

NORM.INV

an excel function used with a given mean and standard deviation, that generate a value for the random variable characterized by a normal distribution.

19
New cards

continuous probability

in this distribution, a random variable can take any value in a specified range (not just a discrete set of values)

20
New cards

Monte Carlo simulation

uses repeated random sampling to represent uncertainty in a model representing a real system and that computes the values of model outputs

21
New cards

LN(RAND())*(–m)

excel expression that generates an exponential random variable with mean m

22
New cards

Verification

is largely a debugging task to make sure that no errors are in the computer procedure that implements the simulation

23
New cards

Uniform distribution

a type of continuous probability distribution in which the variable of interest takes any value in a specified range with equal probability

24
New cards

=RANDBETWEEN(0, 100)

excel function that generates random integers between the values of 0 to 100, inclusive

25
New cards

binding constraint

a constraint that holds as an equality at the optimal solution

26
New cards

extreme points

The points where constraints intersect on the boundary of the feasible region

27
New cards

objective function contour

a set of points that yield a fixed value of the objective function

28
New cards

objective function

the expression that defines the quantity to be maximized or minimized in a linear programming model

29
New cards

optimal point

Geometrically, binding constraints intersection

30
New cards

Problem formulation

or modeling, is the process of translating a verbal statement of a problem into a mathematical statement

31
New cards

Simplex algorithm

developed by George Dantzig, is quite effective at investigating extreme points in an intelligent way to find the optimal solution to even very large linear programs

32
New cards

conservative

an approach that evaluates each decision alternative in terms of the worst payoff that can occur. It leads to choosing the decision alternative that provides the best of the worst possible payoffs

33
New cards

Conditional probability

the probability of one event, given the known outcome of a (possibly) related event

34
New cards

payoff

a measure of the outcome of a decision such as profit, cost, or time

35
New cards

Bayes’ theorem

enables the use of sample information to revise prior probabilities

36
New cards

node

An intersection or junction point of a decision tree

37
New cards

Brett wants to sell throw blankets for the holiday season at a local flea market. Brett purchases the throws for $15 and sells them to his customers for $35. The rental space is fixed fee of $1,500 for the season. Assume there is no leftover value for unsold units. If he orders 200 and demand is 150, what is the payoff?

Payoff = 150($35) – [$1,500 + 200($15)] = $5,250 – $4,500 = $750

38
New cards

collectively exhaustive

The states of nature are defined so that they are mutually exclusive (no more than one can occur) and collectively exhaustive (at least one must occur)

39
New cards

perfect

A special case of sample information where the information tells the decision maker exactly which state of nature is going to occurre

40
New cards

regression

a statistical technique used to model the relationship between a dependent variable (target) and one or more independent variables (predictors) to forecast outcomes and determine the impact of specific factor

41
New cards

what are the three types of data analytics?

descriptive (what happened), predictive (what will happen), and prescriptive (what should be done)

42
New cards

what are patterns of time series?

trend, Seasonality, Cyclical patterns, and Irregular variations (or noise)

43
New cards

Seasonality

Predictable patterns that repeat at fixed, regular intervals (such as daily, weekly, monthly, or yearly)

  • Example: A spike in retail sales every December or increased website traffic on Monday mornings

44
New cards

Cyclical Patterns

rises and falls in data that are not of a fixed frequency, often linked to broader economic conditions or business cycles and they typically last longer than a year.

  • Example: Periods of economic expansion or recession affecting industry-wide sales

45
New cards

Irregular Variations (Noise/Residuals)

Unpredictable, random fluctuations that cannot be explained by trends or cycles

  • Example: A sudden, one-time spike in calls due to an unexpected news event

46
New cards

what is hierarchical clustering?

an unsupervised machine learning method that organizes data into a tree-like structure of clusters called a dendrogram

47
New cards

Agglomerative (Bottom-Up) dendrogram

Starts with each data point as its own cluster and merges the closest pairs until only one cluster remains

48
New cards

Divisive (Top-Down) dendrogram

Starts with all data points in one cluster and recursively splits them into smaller, distinct clusters

49
New cards

euclidean distance

distance = square root of: (x2 - x21)² + (y2-y1)²

50
New cards

linear regression calculation

y^ = B0 + B1x

y^ = The predicted value of the dependent variable

B0 = (Intercept): The value of y when x is zero.

B1 = (Slope/Coefficient): How much y changes for every one-unit increase in x

x = The independent variable