Quantitative Methods Answers

Questions: 545

Answers by our Experts: 428

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

T(n) = 2T([sqrt(n)])+1
T(1) = 1
Which of the following is true?

A) T(n) = Theta (log log n)
B) T(n) = Theta (log n)
C) T(n) = Theta (sqrt(n))
D) T(n) = Theta (n)
The median of n elements can be found in O(n) time. Which one of the following
is correct about the complexity of quick sort, in which median is selected as
pivot?
(A) Theta(n)
(B) Theta (n log n)
(C) Theta(n^ 2 )
(D) Theta( n^3 )
T(n) = 2T([sqrt(n)])+1
T(1) = 1

A) T(n) = Theta (log log n)
B) T(n) = Theta (log n)
C) T(n) = Theta (sqrt(n))
D) T(n) = Theta (n)
suppose there are (ceiling[log n]) sorted lists of (floor[n/log n]) elements each.
Time complexity of producing a sorted list of all these element (use heap data structure)
a]O(n log log n)
b]theta(n log n)
c]Big Omega(n log n)
d]Big Omega(n^1.5)
A SAMPLE OF 400 STUDENTS OF UNDERGRADUATE AND 400 STUDENTS OF POST
GRADUATE CLASSES WERW TAKEN TO KNOW THIR OPENION ABOUT AUTONOMUS
COLLEGE. 290 OF THE UNDERGRADUATE AND 310 OF THE POST GRADUATE
STUDENTS FAVOURED THE AUTONOMUS STATUS .PRESENT THESE FACT IN THE FORM
OF A TABLE AND TEST AT 5% LEVEL , THAT THE OPINION REGARDING AUTONOMUS
STATUS OF COLLEGES ARE INDEPENDENT OF THE LEVEL OF CLASSES OF STUDENTS
A chartered accountant applies for a job in two firms X and Y. He estimates that the probability of his being selected in firm X is 0.7 and being rejected in Y is 0.5 and the probability that atleast one of his applications rejected is 0.6. What is the probability that he will be selected in one of the firms?
Prove that loga x = O(logb x) for any a > 0 and b > 0.
3. A sample of 400 students of undergraduate and 400 students of post graduate classes were taken to know their opinion about autonomous college. 290 of the undergraduate and 310 of the post graduate students favoured the autonomous status. Present these fact in the form of a table and test at 5% level, that the opinion regarding autonomous status of colleges are independent of the level of classes of students
Consider the following (unrealistic!) investment problem.We have a set S of n potential investments, each given by a pair of floating point numbers (amount, estimated return) There is a total amount A to invest; we want to select investments to maximise the return on this amount.One may select each investment (a,r) as a whole (spending all of a, and getting r return) or only can select only a fraction f (spending (f*a), and getting (f*r) return). The estimated return of a set of selections is the sum of the returns of the individual selections. Obviously, in selecting elements of S, we cannot spend more than the total amount A available.Describe an efficient algorithm for computing the maximum estimated return that can be realised with amount A and set of investments S. What is the time complexity of your algorithm (in big-oh notation)? Is it the best possible? It is fine to describe your algorithm in words and/or pseudocode; there's no need to include code in a programming language.
Suppose you have a wire mesh which is N by M units long, made up of unit square with wire at the edges. (So there are N+1 parallel wires all M long and, perpendicular to these, M+1 all N long).An ant starts off at the bottom left corner of this grid (co-ordinates (0,0) and crawls on the wires the shortest possible distance to reach the top-right corner (N,M). How long is the shortest route. How many different shortest routes are there? (Namely, find a formula in terms of N and M) You might want to try this for small values of N and M and see if you can work out how the number for (N,M) relates to those for (N,M-1) and (N-1,M) If you build up a table of these numbers you might recognise them from elsewhere in mathematics so that might help you find the formula, but you also try to explain the connection.
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS