Discrete Math
Evaluate the binomial coefficient inom{7}{5}.
Evaluate the binomial coefficient when and are the same, for example, .
Find the coefficient of the term in the expansion of .
Find the coefficient of the term in the expansion of .
Determine the coefficient of the third term in the binomial expansion of .
Find the coefficient of in the binomial expansion of .
Expand using Pascal's triangle.
Expand using Pascal's triangle.
Given that the coefficient of is 3 times that of in the expansion , find the value of .
Using Breadth First Search (BFS), find the shortest path between a start node and an end node in an unweighted graph.
Using the breadth-first search method, find all the nodes discoverable from the root node in a given graph.
Prove the recursive identity for binomial coefficients: inom{n}{k} = inom{n-1}{k} + inom{n-1}{k-1} given the restrictions and .
Prove that the sum of binomial coefficients for a set of size equals , i.e., sum_{k=0}^{n} {n \choose k} = 2^n.
Given a function named addup, which adds numbers up to a certain number depending on the argument passed, determine the runtime complexity of the function both for the scenario where it iterates with a for-loop and where it computes using the formula sum = .
Explain the different time complexities represented by Big O notation, such as , , , , and , using examples like accessing an element in an array, binary search, looping through elements, and sorting operations.
What is the probability that you're an alcoholic given that you're a male?
There are 500 students in a certain School. 150 students are enrolled in an algebra course and 80 students are enrolled in a chemistry course. There are 30 students who are taking both algebra and chemistry. If a student is chosen at random, what is the probability that the student is taking algebra?
What is the probability that the student is taking chemistry given that the student is also taking algebra?
What is the probability that the student is taking algebra given that the student is also taking chemistry?