Search results for query: *

  1. L

    Simple Trig Integral

    wait is there diference between cos(x)^6 and [cos(x)]^6
  2. L

    Simple Trig Integral

    Homework Statement Integral of ... h(x) = x^5 + x^5 + [cos(x)]^6 Homework Equations The Attempt at a Solution so it would be 1/6x^6 + 1/6x^6 + 1/7[sin(x)]^7 is this correct?
  3. L

    Developing Recurrence Formula (Closed)

    so H(n) = H(n-1) + H(n-2) 1st substitution. H(n) = H(n-2) + H(n-3) + H(n-3) + H(n-4) = H(n-2) + 2H(n-3) + H(n-4) 2nd substitution. = [H(n-3) + H(n-4)] + 2[H(n-4) + H(n-5)] + [H(n-5) + H(n-6)] = H(n-3) + 3H(n-4) +...
  4. L

    Developing Recurrence Formula (Closed)

    Yea, I just realized that my H(5) was wrong because I accidently counted 11111, so the pattern here is H(n) = H(n-2) + H(n-1) for n >= 3 or (n > 2) so this is just fibonnachi sequence, I'll work on getting the closed form of this and get back with what I have. Thank you
  5. L

    Developing Recurrence Formula (Closed)

    Sorry I worded poorly.. I should say that substrings of 1's should be even. (given 0 is a delimeter) eg 10111 is broken down into 1 and 111 (all odd) 1011 is 1 and 11 (odd / even) but all has to be even so this is not right.
  6. L

    Developing Recurrence Formula (Closed)

    Homework Statement Given binary string of length n. substrings of 1's should be even. (given 0 is a delimeter) eg) 10111 is broken down into 1 and 111 (all odd) so, for example string with H(n = 4) 0000 1100 0110 0011 1111 there are 5 of them. H(n = 3) 000 110 011 there are 3 of...
  7. L

    What is the probability that it will be on time all five times

    Homework Statement 1. Joshua's afternoon bus is on-time 60% of the time. What is the probability that it will be on time all five times this week? State any assumptions that you are relying on. 2. In this trial, a fair 6-sided die will be rolled until two consecutive sixes have been...
  8. L

    Complete Induction -- How to remove my subscription to this very old thread?

    Homework Statement Question asks to prove that all binary string that begins and ends with the same number(bit) has an even number of occurences of substrings from {0,1} Hint: you may find useful to combine claims about strings that start and end with different bit Homework Equations {0}...
  9. L

    Math algebra/induction

    sorry I fixed the problem. it's >= instead of > thanks,
  10. L

    Math algebra/induction

    I added the full question with my understandings.
  11. L

    Math algebra/induction

    Homework Statement The induction question is. for all natural n, n4 <= 4n + 17 Base case: 0 Works, since 0 < 1 + 17 then, I assume that for all n in natural, n4 <= 4n + 17 holds. Now I believe I need to show that, 4(n4) <= 4(4n + 17) that is, 4n+1 + 17 >= (n+1)4 To do so, I prove, 4n4 >=...
  12. L

    Mathematical Induction

    ok I think i figured out the trick. I expand both sides, but on the left side i make n3 + n3 + n3 + 3n and compare it to the right side term by term to prove that its greater for all n > 4. am I right with this approach?
  13. L

    Mathematical Induction

    > 3((n3) + n ) by I.H I am still unsure if I got it right... I said in my induction hypothesis that, n3 + n < 3n but while I am trying to prove that p(k+1) works for all k, I think I am using assuming this line... which is the p(k+1) that I am trying to prove. 3(n3 + n) < 3(3n) by Induction...
  14. L

    Mathematical Induction

    Homework Statement show n3 + n < 3n for all n >= 4 Homework Equations The Attempt at a Solution I.H : n3 + n < n for all n >= 4 3(n3 + n) < 3(3n) then (3n+1) = 3 x 3 n > 3((n3) + n ) by I.H...
  15. L

    Independent vs Mutually Exclusive

    Homework Statement If a question states event A and B are "not" independent, does it mean that they are Mutually Exclusive? My brain is having hard time accepting that if they are not dependent, then they don't neccesarily have to be 'dependent'. Kinda like if its not hot, then its cold. it...
  16. L

    Probability Question (Simple, but I am confused)

    oop nevermind, I think I am good now ! Thanks for all the help !
  17. L

    Probability Question (Simple, but I am confused)

    P(both good|20good = (20/20)(19/19) = 1 P(both good|19 good, 1 bad) = (19/20)(18/19) = 0.9 P(both good|18 good, 2 bad) = (18/20)(17/20) = 0.765 Since P(Both good) is union of all 3 cases, we multiply them correct? P(Both good) = 1 x 0.9 x 0.765 = 0.6885
  18. L

    Dependent theorem and bayes theorem.

    I am currently working on a very very similar question on my own. But, the problem I have is finding the P(Random 2 are good). Needed Information P(all are good) = 0.7 P(Random 2 are good | all are good) = 1 (since given all are good, any random ones will be guranteed to be good) P(Random 2 are...
  19. L

    Probability Question (Simple, but I am confused)

    P(A: No defects in lot) = 0.6 as given Also would P(B|A: Two pents not defective given no defects in lot) be 1 ? If we are given that there are no defects in the lot, the probability of two pen being not defective is 100% = 1 I am confused how to calculate P(B: Two pens were not defective)...
  20. L

    Probability Question (Simple, but I am confused)

    I am now tackling the 2nd question. I've read up on Bayem's Rule and starting to get the hang of it. So we need to find the probability that the 2 pen out from a lot of 20 is not defective right? This will be related to the equation P(No defective in the lot|2/20 not defective) = [P(No...
  21. L

    Probability Question (Simple, but I am confused)

    Yes that's what I thought too. Maybe my formula is not right? 1 - P(A) gives everything else other than P(A)? Oh my mistake, I remember p(A) covers the whole circle and not just moon shape... so it is. 1 - P(A) + P(A and B)
  22. L

    Probability Question (Simple, but I am confused)

    ok I think I am getting the hang of it. Can you check just if this is correct. I've drawn the diagram and it looks right to me. P(~A or B) The equation for this is 1-P(A)
  23. L

    Probability Question (Simple, but I am confused)

    oh so the overlapping part was where I got confused. http://en.wikipedia.org/wiki/Symmetric_difference So this is exactly how the diagram should look. and hence for the reason of 1-P(A or B)
  24. L

    Probability Question (Simple, but I am confused)

    Thanks for your response. I tried drawing the venn diagram, I guess I tried before but it didn't click for me P(not A and not B) = 1 - P(A or B) does not A mean B, and not B mean A? Because technically venn diagram consists of only 2 group of data. ones in A and the other in B. Edit: so for...
  25. L

    Probability Question (Simple, but I am confused)

    Homework Statement 1. The question asks for the value of P(~A and ~B) - What equation to use? The Attempt at a Solution 1. I am confused though, is P(~A and ~B) same as 1 - P(A and B) or should I use, Pnot(A or B), and this is equivalent to 1 - P (A or B) ? Extra question... There is...
  26. L

    Induction (plank question)

    Im so lost, can anyone give me a big hint or first part of the equation
  27. L

    Math Induction Problem

    Homework Statement Suppose that n identical planks, each of length 1 metre, are stacked flat on top of each other, with each one shifted a little further to the right, creating an ever-larger overhang. Prove the maximum span of this overhang is Fn = 1/2 [1 +1/2 + 1/3 + 1/4 + ... + 1/(n-1) ]...
  28. L

    Induction (plank question)

    it depends where 2nd plank is placed with relative to the base to determine how far 3rd plank has to be inorder to fall right ? if its spppaaa---------- something like this would have to occur s----------- ----------- centre of mass = (2nd plank distance + 3rd plank distance ) / 2...
  29. L

    Induction (plank question)

    if 2nd plank is placed... space-------- <- any slight shift to the right will cause the 2nd plank to topple over. 0.5m-------- -------- btw when you said "2nd plank is 0.5long" you mean if it has an overhang of 0.5m right ? cuz all panks are 1m :O r = 1/2( 1 + 1/2 ) = 3m if k plank...
  30. L

    Induction (plank question)

    ok here's my shot at it centre of mass is R = (m1*r1 + m2*r2)/(m1 + m2) asumming all masses are equal.
  31. L

    Induction (plank question)

    is it something like k + (k + 1) / 2 ?
  32. L

    Induction (plank question)

    thats what i sort of meant. any distance more than 0.5m will shift centre of mass to the right and fall. But how do we write it in mathematical equation?! and when do i use this equation to solve the equation using induction? Prove the maximum span of this overhang is: 1/2(1 + 1/2 + 1/3...
  33. L

    Induction (plank question)

    im not how to represent it mathematically. spa----------- (k+1) sp---------- s--------- -------- the first k element topple over when the sum of distance shifted to the right from k to (k+1) is > 0.50 right? [distance is s + sp + spa + etc...]
  34. L

    Induction (plank question)

    hmm... as obvious it may seem... i don't see what I am suppose to find... sp ------- (k+2) s ------- (k+1) ------- k what am i exactly looking for ? the point when k+1 topples over?
  35. L

    Induction (plank question)

    I know that (k+1)st plank must have less than 0.5m of overhang in comparison to k th plank. Otherwise, the weight will shift and fall. So... Im not sure what where i would be using the formula of the maximum distance (k+1) can go without toppling... in this induction problem.. Im througly...
  36. L

    Induction (plank question)

    hmm... Yea I actually tried to solving by using induction method.. so here is where i am at F[lower subscript(k + 1 )] = 1/2(1 + 1/2 + 1/3 + ... + 1/k) the above equation is after i substitute k+1 in n. But how do i represent this F[lower subscript (k +1)] in terms of Fk ? alone ? Im not...
  37. L

    Induction (plank question)

    Homework Statement Suppose that n identical planks, each of length 1 metre, are stacked flat on top of each other, with each one shifted a little further to the right, creating an ever larger overhang. Prove the maximum span of this overhang is: 1/2(1 + 1/2 + 1/3 + ... + 1/n-1) metre...
  38. L

    Pidgeonhole Logic proof

    Is there some mathematical way of showing that no matter how we distribute it, there's always one pigeonhole with k + 1 objects in it ? I can represent this with an example, kn + 1 / n gives the number of objects to be placed in each hole to evenly distribute. But the remainder of 1 gives us...
  39. L

    Pidgeonhole Logic proof

    Homework Statement Pidgeonhole principle: If kn+1 objects are placed in n pigeonholes, then some pigeohoe contains atleast k+1 objects. Homework Equations The Attempt at a Solution I completely understand this problem but I am not sure where or how to start. If there are n =...
  40. L

    Exponential Growth

    Ah I see the light ! But the line after "so that", Shouldn't it be e^lns = e^-x/v + c ? just confused to what C is
  41. L

    Exponential Growth

    Homework Statement Water is pumped into a tank. Volume V, is kept constant by continuos flow. The amount of salt S, depends on the amount of water that ahs been pumped in, call it X. ds/dx = -S/V Find the amount of water needed to eliminate 50% of the salt. Take v AS 10,000 gallons...
  42. L

    Hemispherical bowl Volume question

    Homework Statement Question Reads... A hemispherical bowl 60cm in diameter is filled to within 5 cm of the top. Thirty minutes after the party starts, there are only 5cm of punch left at the bottom of th bowl. a) how much punch was there at the beginning of the party? b) How much punch was...
  43. L

    Finding Volume of the solid, Integral

    ok so since this is a shell method. i would have to represent in y integral. sqrt(y^2 - a ^2) = x V= integral(0, a) 2pix(sqrt(y^2 - a ^2))dx is that correct?
  44. L

    Finding Volume of the solid, Integral

    Homework Statement Question Reads: A circular disk x ^2 + y^2 <= a ^ 2 , a > 0 is revolved about the line x = a. Find the volume of the resulting solid. Homework Equations v = integral(a, b) (2pi)y [F(y) - G(y)] dy The Attempt at a Solution Im currently confused, should i...
  45. L

    Some number belongs to real such that

    Homework Statement sin(x) = x - 1 Homework Equations The Attempt at a Solution i used the fact that -1 < sin(x) < 1 and set interval to [0, 2pi]. this gave me, -1 < sin(x) < 1 and -1 < x - 1 < 2pi - 1 so therefore, since sin(x) < 1 < 2pi - 1 there must be x...
  46. L

    Continuos function

    Homework Statement Prove or give a counterexample for each of the following statements. a) If f(x) is continuous, then the function lf(x)l is continuous. b) if lf(x)l is continuous, then f(x) is continuous Homework Equations Given epsilon > 0 there is delta > 0 such that l x...
  47. L

    Upper bound of a limit

    Homework Statement Find an upper bound M for f(x) = abs ( x+2 / x-8 ) if abs(x-7) < 1/2 Homework Equations The Attempt at a Solution i first found set of x values using abs(x-7) < 1/2 which is 13/2 < x < 15/2. Now, i believe i have to find other set of x values to compare to find...
  48. L

    Trig solve for x [ Attempt Included ]

    2cos^2(2x) + 1 = 3 cos(2x) 2cos^2(2x) - 3cos(2x) + 1 = 0 let u = cos(2x) 2u^2 - 3u + 1 = 0 (2u - 1 )(u - 1) = 0 u = 1/2, 1 Case 1. Cos2x = 1/2 cos2x = 1/2 2cos^2x - 1 = 1/2 2cos^2x = 1/2 - 1 2cos^2x - = -1/2 cos^2x = -1/4 cosx = sqrt(-1/4) but how can you sqrt...
  49. L

    Trig solve for x [ Attempt Included ]

    Homework Statement solve the following equation for x in the interval [0,2pi) 2Cos^2(2x) + 1 = 3Cos(2x) Homework Equations Cos(2x) = 2Cos^2 (x) - 1 The Attempt at a Solution 2Cos^2(2x) + 1 = 3Cos(2x) 2Cos(2x)Cos(2x) + 1 = 3Cos(2x) 2Cos(2x) + 1 = 3 2(2Cos^2 (x) - 1) - 2...
  50. L

    Inequalities (trig) + Attempted

    ok, just to make sure.. are my previous steps correct? just to double check. thanks
Back
Top