Given a connected graph G with n vertices. We say an edge of G
is a bridge if the graph becomes a disconnected graph after
removing the edge. Give an O(m + n) time algorithm that finds all
the bridges. (Partial credits will be given for a polynomial time
algorithm.) (Hint: Use DFS)
Given a connected graph G where edge costs are pair-wise
distinct, prove or disprove that the G has a unique MST.
Please write Pseudo-code for the algorithms.
Consider the following hypothesis test:
H0: n greater than or equal to 20
Ha: n less than 20
a sample of 45 provided a sample mean of 19.6. the population
standard deviation is 1.8
a. Compute the value of the test statistic (to 2
decimals). Enter negative value as negative number.
_______
b. what is the p-value? (3 decimals)
d. using a=0.05, what is the critical value for the test
statistic (to 3 decimals)? Enter negative value as negative
number.
________...
Design a Turing machine that, given a positive binary number n
greater than or equal to 2, subtracts 2 from this number. Test it,
step-by-step, on the example of n = 2.