You are not logged in.
None?
I'm not sure if i'm posting this in the wrong part of the forum, but nevermind. Anyway, does anyone here know of any good pieces of AS/A2 level maths and physics software - either teaching or revision. I'm determined to get as good a grade as possible and want to get myself organised now with anything that can help.
Cheers.
If i'm told that 0 = -2sin(0.5x) + cos(0.5x) , how would i go about finding x in this situation? Is this called a trigonometric equation, i'm not sure?
Thanks.
Patrick's right dude. There's not even like a please or thank you there.
If you rearrange the equation into
you can see what you're doing a bit more, and just pick the coordinates of the centre and the size of the radius straight off. You were right with the answers though.
I'm not totally sure what you mean in part (b). Surely there could be any number of possible tangents to the circle? If you're asking for the points at which the x-axis intersects the circle, then this can be calculated by solving the simultaneous equation:
So all you need to do is substitute the value of y into the equation for the circle:
Therefore the circle intersects the x-axis at points (√5 + 1,0) and (-√5 + 1,0). I think.
Hmm that's a tough one. You could code it recursively using something like:
function INOUT(x){
if(x == 1) then
{
return 1
}
else
{
if (INOUT(x-1) + 2 ≤ x) then
{
return (INOUT(x-1) + 2)
}
else
{
return 1
}
}
}
}
I can't figure out a general formula though. It's gonna bug me now.
Yeah, i agree with Mathsyperson. Think about it this way:
On time:
The only way for the work to be completed on time is for both supliers to be on time (0 days late). This gives the one possibility
0 and 0 = 1/2 × 2/3 = 1/3.
One day late:
There are three possible ways for the work to be completed one day late. Either both suppliers are a day late, or the first is on time and the second is a day late, or the first is a day late and the second is on time. This gives:
1 and 1 = 1/4 × 1/6 = 1/24
0 and 1 = 1/2 × 1/6 = 2/24
1 and 0 = 1/4 × 2/3 = 4/24
Therefore the overall probability is 1/24 + 2/24 + 4/24 = 7/24.
Two days late:
Using similar reasoning as before we have five possible ways in which the work can be completed two days late. These are:
2 and 2 = 1/4 × 1/6 = 1/24
1 and 2 = 1/4 × 1/6 = 1/24
2 and 1 = 1/4 × 1/6 = 1/24
0 and 2 = 1/2 × 1/6 = 2/24
2 and 0 = 1/4 × 2/3 = 4/24
This gives an overall probability of 1/24 + 1/24 + 1/24 + 2/24 + 4/24 = 9/24.
You might be able to tidy that up a bit further, but i think it's right
Composite Rule (sometimes called the Chain Rule)
If k is a function with rule of the form k(x) = g(f(x)), where f and g are smooth functions, then k is smooth and
k'(x) = g'(f(x)).f'(x)
(or using Leibniz form: If y = g(u), where u = f(x), then dy/dx = (dy/du)(du/dx) ) .
So, for instance, if you have k(x) = ln(x^2 + 1), then y = g(u), where g(u) = lnu and u = x^2 + 1. This gives k'(x) = (1/(x^2 + 1)).2x = 2x/(x^2 + 1) .
Hope that helps.
The image isn't loading so nobody can see what the questions are!
You need to calculate the derivative of each function...
1) d/dt(4/t +4lnt) = -4/t^2 + 4/t
2) d/dt(sin(t^2 + 1)) = 2cos(t^2 + 1)t
d/dt(cos(2t - 3)) = -2sin(2t - 3) (both using the composite rule)
3) d/dt(2(e^(-t/2))cos(2t)) = (-e^(-t/2))cos(2t) - 4(e^(-t/2))sin(2t) (using the product rule)
4) I'm not sure about this one, it's a little bit unclear what you mean, but you get the general idea so far. Hopefully the rest are okay, but it's late so i'd check em!
Oh math, i've just realised you've specified t=1.2, so you'd have to use that value with the derived functions to get your answers.
Yes i get that too, the equation's wrong.
Rather than struggle to do it in here, i've knocked up a basic proof thingy. I couldn't figure out how to post it as an image, so here's a link to the image instead:
http://img64.imageshack.us/img64/8128/f … of16xb.png
Hope that helps.
I think i see, thanks. But i'm dealing with the sequence, not the sum of the infinite series. I wasn't too clear about the difference before, but i am now. Sorry for the misunderstaning
I'm a bit confused by the converge/diverge thing. I thought that a sequence diverges when r>1, so it doesn't tend to any one limit?
Ah yes, thanks, i've figured it.
Divide through by n^4 which leaves (1 + 1/n^2) / (4 + 7/n^3) . Since 1/n^2 and 7/n^3 both converge to zero, this means the series must converge to the limit 1/4. Back of the net.
Does anyone happen to know how i could go about finding what this sequence converges to?
An = (n^4 + 2n^2) / (4n^4 + 7n)
I can manage simpler ones but this one's causing me a few headache... just a hint would be nice :-)
Cheers.
It was staring at me all along! Thank you very much
Okay cool thanks. It's really annoying me too now lol!
Hey,
i'm struggling with finding inverse functions so I was wondering whether anyone would be able to run me through it? For simple ones I can manage it, but this one is really bugging me:
f(x) = S(x+L)/x^2
I've plotted it on my calculator, so I know that the domain would have to be restricted to make the inverse function valid. But no matter how I rearrange it I just can't figure it out Do I have to do some differentiation or something?
Any help would be greatly appreciated!
Jon.