DISCRETE STRUCTURES FINALSSSSS

0.0(0)
Studied by 2 people
call kaiCall Kai
Locked
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:52 PM on 8/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

Probability

A measure of the likelihood that an event will occur.

2
New cards

Discrete Probability

A branch of probability that deals with countable outcomes such as coin tosses, dice rolls, and card draws.

3
New cards

Experiment

A process that produces one or more outcomes.

4
New cards

Outcome

The result of a probability experiment.

5
New cards

Sample Space (S)

The set of all possible outcomes of an experiment.

6
New cards

Event

A subset of the sample space.

7
New cards

Probability Formula

P(A) = n(A) / n(S), where n(A) is the number of favorable outcomes and n(S) is the total number of outcomes.

8
New cards

Simple Event

An event that consists of only one outcome.

9
New cards

Compound Event

An event that consists of more than one outcome.

10
New cards

Complement of an Event

The event that an event A does not occur.

11
New cards

Complement Formula

P(A') = 1 − P(A)

12
New cards

Union of Events

The probability that event A or event B (or both) occurs.

13
New cards

Intersection of Events

The probability that both event A and event B occur.

14
New cards

Venn Diagram

A diagram used to visually represent events and their relationships

15
New cards

Independent Events

Events where the occurrence of one does not affect the occurrence of the other.

16
New cards

Formula for Independent Events

P(A ∩ B) = P(A) × P(B

17
New cards

Conditional Probability

The probability of an event A occurring given that event B has already occurred

18
New cards

Conditional Probability Formula

P(A|B) = P(A ∩ B) / P(B)

19
New cards

Probability Tree

A diagram used to represent all possible outcomes of a multi-step experiment.

20
New cards

Applications in Computer Science

Uses of probability in areas such as network reliability, machine learning, cryptography, and algorithm analysis

21
New cards

Applications in Business and Daily Life

Uses of probability in risk analysis, quality control, insurance, and forecasting.

22
New cards

Recursive Definition

A way of defining something using itself, in a step-by-step manner.

23
New cards

Recursion

A process or rule that is repeated.

24
New cards

A process or rule that is repeated.

The initial value or starting point in a recursive definition.

25
New cards

Recursive Rule

A rule that defines subsequent terms using previous terms.

26
New cards

Counting Numbers (Recursive Example)

Numbers that can be defined recursively starting from a base case and building upward.

27
New cards

Even Numbers

Numbers that can be defined recursively by adding 2 to the previous term.

28
New cards

Factorial

A function defined recursively as n! = n(n−1)!

29
New cards

Fibonacci Sequence

A sequence where each term is the sum of the two preceding terms.

30
New cards

Recursive Sequence Example

Given a₁ = 3 and aₙ = aₙ₋₁ + 4, each term is found by adding 4 to the previous term.

31
New cards

Key Rule in Recursion

Always start with the base case before applying the recursive rule.

32
New cards

Permutation

The number of ways to arrange $n$ distinct objects where the order matters.

33
New cards

Combination

The number of ways to choose $r$ objects from $n$ where the order does not matter.

34
New cards

Base Case

The first known value or the starting point in a recursive definition that stops the recursion.

35
New cards

Recurrence Relation / Recursive Formula

A formula used in math and computer science to define each term of a sequence based on its preceding term(s).

36
New cards

Previous Term(s)

The specific value or values needed from the sequence to compute the next term in a recursive process.

37
New cards

Product Rule (Multiplication Rule)

<p></p>
38
New cards

Sum Rule (Addition Rule)

knowt flashcard image
39
New cards
<p>Permutation Formula (nPr) =</p>

Permutation Formula (nPr) =

The specific mathematical formula used to calculate the permutations of $n$ objects taken $r$ at a time.

40
New cards

Negation

A logical operation (often represented by "NOT") that reverses the truth value of a given proposition.

41
New cards

Undefined Sequence

The logical result or error that occurs when a recursive definition does not have a base case to stop it.

42
New cards

0! = 1

Base case of factorial

43
New cards

Increasing nonlinear sequence

Recursive rule of factorial

44
New cards

720

Arranging 3 students from 10

45
New cards

120

Selecting 3 students from 10

46
New cards

6

Ways to arrange "ABC"

47
New cards

120

Arranging 5 people in a row

48
New cards

1 and 1

Fibonacci sequence starts with

49
New cards

Undefined Sequence

Missing base case results in

50
New cards

24

4!