Your limit will equal |x/7| < 1 --> |x| < 7^1/3, making your interval of convergence of (-7^1/3, 7^1/3). Testing the first end point:I ended up getting weird endpoints, like the cubed root of negative 7/3 lol
That's why I thought I must have done something wrong. In fact I don't even know how to check that one, but I'm moving onto Diffy Q for the night.
r^2*r^2 = r^4, 4r^2 - r^2 = 3r^2, and 4*-1 = -4, so:How can I factor r^4 + 3r^2 - 4?
How can I factor r^4 + 3r^2 - 4?
Arguing with a friend over a probability problem. We're getting different answers and aren't sure who is right. I thought I'd throw it up here and see if I can get a third opinion to help us because we're not sure where the other one fucked up.
You have an urn with 8 amber balls, 8 blue balls, and 2 green balls. You draw 7 balls from it. What is the probability of getting at least one amber ball, at least one blue ball, and no green balls?
Can I have your results?
I got a quick and dirty result that probably is wrong:
(c(16,7)-2*c(8,7))/c(18,7) = 14/39.
Plz, tell me if I'm wrong since I'm studying this area that I have neglected. :S
My reasoning:
c(18,7) is the total number of possible draws.
c(16,7) is the number of possible draws without green balls
c(8,7) is the number of possible draws with only either amber or blue balls.
c(16,7)- 2*c(8,7) is the total number of possible draws without green balls and with at least one of each of the other.
By diving by the total number of combinations, we have the probability.
Looks very convincing to me. Also looks exactly like how my friend did it, which is discouraging to me. Hahaha. But it makes sense. I'm curious to see if everyone will get the same answer. The issue was that, like most probability problems, there are multiple ways of going at it. I chose a different way and got a different answer, but odds are you and my friend are both right.
Can you share how you did it?
Yeah, sure. Let me preface this by saying that I prefer doing all probability problems the way that you did this one. Find the size of the solution set, find the size of the set of all outcomes, and divide. I think it's the best way to do all probability problems, given a few rare exceptions. However, when I was given the problem on an exam, the professor specified that we should do it by counting each drawing as individual, independent events, and do the probabilities by multiplying each event. So tell me where I went wrong, if you can.
First you pick the first ball. Either amber or blue is good for this one, so the probability of getting a success on the first draw is (16/18). Next, you draw ball 2. WLOG you can make this draw the one where you draw the other color you need. So the probability of success is (8/17). Now you have 5 more balls to draw, and they can be amber or blue. It doesn't matter. So the third ball you have probability of (14/16). Then for the fourth ball, you have (13/15). Then fifth, (12/14). Then (11/13). And finally (10/12) for the last ball. All the drawings are independent, so you just multiply them all together.
(16/18)(8/17)(14/16)(13/15)(12/14)(11/13)(10/12)=.192
So, can anyone find my incorrect assumption?
Imo, this part is wrong. You don't necessary need that specific draw. What do you mean by WLOG?
Yeah, I'm sure I'm under counting something. I mean "without loss of generality" and I'm pretty sure that's where I'm making my mistake.
Do you know what the correct answer is? I ended up with .28
Do you know what the correct answer is? I ended up with .28
Care yo share how you did it?
I don't know yet but I'll post it when I find out. Could you show what you did?
Okay EskimoJoe. Got I just spent a little more time on your problem and I did it like your professor told you:
(16/18)(15/17)(14/16)(13/15)(12/14)(11/13)(10/12)-2(8/18)(7/17)(6/16)(5/15)(4/14)(3/13)(2/12) = 14/39
The first expression is the probability of getting no green balls, lets call it P1. The second is the probability of getting all amber or all blues, lets call it P2.
So, P = P1-P2.
There you go.
Again, I would really appreciate if someone could verify this results.
That's as illegal as you can get. Just do any example and you'll notice.
You also got the first expansion wrong.
(i^2 + 1)^2 = i^4 + 2*i^2 + 1
Oswald fired a rifle from approximately 90 metres away.If the bullet travelled in a straight
line after leaving the rifle (at a velocity of ~700m/s) then the sight
aimed about 10 cm too high at a target 90 metres away. How much would the
drop in the trajectory due to gravity compensate for this? (The initial vertical
velocity is zero, and satisfies dv/dt = −g, while the horizontal velocity is constant
if we neglect air resistance.)
Can anyone push me in the right direction for this? Its a Diff eqns class but I can't figure out how to do it... Just looking for a push, not an answer, if possible ^^
![]()
It didn't like my answer. The y^2/16 was a pretty big hint to square everything, so after that I just solved for theta in terms of x. This involved taking the arcsin.
I can't tell if there is something wrong with my formatting or if I have no idea what I'm doing. I did the other ones fine but the trig functions in this one give me a bad feeling that I didn't do it right. Am I making a mistake?
Just from a practical perspective, the independent variable would be t, since x is a function of time.
How would I go about proving that if a sequence tends to infinity, its reciprocal tends to 0?
Continuous CDF’s – Show all R code for credit
The function F(x) = x3/27 for 0 <= x <= 3, 0 for x <0 and 1 for x>3 is the CDF for a random variable X.
Using R, a) create a user-defined function for F
ax <- function(x) {x^3/27}
b) Using F, find the probability that X < 2.
ax <- function(x) {x^3/27} #(Answer = 0.2962)
ax(2)
c) Using F find the probability that .5 < X < 1.5
ax <- function(x) {x^3/27} #(Answer = 0.1204)
ax(1.5)-ax(.5)
Show your R work.
Suppose X is a standard normal random variable. Using R calculate the following:
P(X > 2.723)
1-pnorm(2.723) #(Answer = 0.0032)
P(|X| > 2
1-(pnorm(2)-pnorm(-2)) #(Answer = 0.0455)
The value x* such that P(X > x*) = .9999
qnorm(.9999)
Show your R work.
This is probably a pretty simple question that I'm just not getting.
Why is the derivative of xa^22 just a^22?
Why don't you use the product rule and get (22a^21)x + 1(a^22) ?