Jump to content

EvoN1020v

Senior Members
  • Posts

    532
  • Joined

  • Last visited

Everything posted by EvoN1020v

  1. I remember this thread pretty well. It was a rather lengthy argument. I suggest this link: http://www.ctre.iastate.edu/educweb/ce353/lec05/lecture.htm. It looks really complicated, so I don't know how I can help.
  2. Also, you should know that sine function is an odd function, while cosine is an even function. That's why they have their own special name to define the functions.
  3. I would just assume that intelligent people have messy writing because most of them have poor communication skills.
  4. Well, since your equation of [math](x+y)=x^2+xy+1[/math] have both x, y on the both sides of the equation, you have to use implicit differentation? To use implicit differentation, you do this: [math](x+y)\frac{dy}{dx}=\frac{d}{dx}(x^2+xy+1)[/math]. You can find better webpages on implicit differentation than the one you found. If you still don't understand, then I will try to explain it better next time. I don't have the time right now because my girlfriend is here with me.
  5. The tension of the seat joined to the Ferris Wheel keeps it from falling off. Also, you don't use "Force applied" when you're defining forces in circular motions. Tension is another kind of force that points toward the centre. You'll learn it soon enough.
  6. If you know MATLAB, another mathematical computer program. This is assuming that MAPLE program is almost similiar to MATLAB. You have to define datas for x-axis, let use time for seconds: t=[0:0.01:10] This means that the x-axis will be starting at 0 and going in an increment of 0.01 toward 10 at the end. Then you define a function for example [math]f(x)=x^2+2x-1[/math] You type this: f=x.^2 + 2.*x - 1 (Notice the dot? It means that the x-axis will be multiplied element-by-element. This is very important to know). To plot the graph: plot(t,f) That's it. You can google for MAPLE homepage, and there should be plenty of tutorials on it.
  7. Without pushing someone over a horizontal surface would be a static friction. It keeps the object from slipping. There's no way of knowing coefficient of friction without testing (i.e. pulling or pushing).
  8. I think you're talking about static friction. It's a FACT that static friction is usally higher than kinetic friction so the object won't slip at stationary. When the object overcomes the static friction, it will experience a "stick slip" during the kinetic friction movement.
  9. One acceleration should be positive since one block will go in the positive direction (i.e. up). That means the other block will go in the opposite direction hence negative. (i.e. down). Makes sense?
  10. Hahaa, never thought each person would describe a tangent in many different ways!!
  11. Very good Ragib. The answer is [math]714 m/s[/math]. I'll put up the complete solution for this question when I have the time, or I can wait for other people to attempt the question themselves. You're welcome to post a new question in 2 weeks' time. Blike just e-mailed me saying that he will re-create the front page with a featured physics questions thread on it. I'll post the first question, and then you can post a question after that. Cool with you?
  12. You can use the "New Posts" button on the taskbar at the top. It will show you the newest threads, and functioning threads with new posts. It's almost similiar to a front page.
  13. Anybody try the 3rd question? It's actually a high-school version type of question. Anyone should be able to answer it.
  14. There is already a thread on this subject that was created over a year ago. bascule, you can check it out if you want to.
  15. You're just saying it in a different way, rather much too fancier for a person who never hears "tangent" before. Keep it simple for newbies please.
  16. With the after collision of the momentum, you have to be careful. The mass of the submarine before the injection of the torpedo was 50,000 kg. Since the torpedo is 100 kg, the mass of the submarine will be 49,900 kg after the injection. Try the 3rd question yourself. It's not that hard.
  17. After some hours of biting my fingernails trying to solve [math] \int cos^4x[/math], I finally got it. What can I tell you? It's far from your enterprise in what you already know. (You told me you are in high school, right?) In my example of [math]cos^3x[/math], it worked perfectly, because it has an odd power, so you can have a factor of one function. With even power, it's a different story. You have to use the half angle trigonometric identity. [math]\int cos^4x dx = \int (cos^2x)^2[/math] The half angle trig identity for [math]cos^2x[/math] is: [math]\frac{1}{2}(1+cos2x)[/math]. You input it in the above equation: [math] \int (\frac{1}{2}(1+cos2x)^2)^2[/math] It will expands to: [math]\frac{1}{4} \int (1+ 2cos2x + cos^22x)dx[/math] You should notice that there is another even power for cosx. ([math]cos^22x[/math]) so you have to use the half angle identity again. [math]cos^22x = \frac{1}{2}(1+cos4x)[/math] Input it in the equation: =[math]\frac{1}{4} \int (1+ 2cos2x + \frac{1}{2}(1+cos^24x))[/math] [math]\frac{1}{4} \int (\frac{3}{2} + 2cos2x + \frac{1}{2}cos4x)dx[/math] Now you can use the Power Rule for Integration: =[math]\frac{1}{4}(\frac{3}{2}x + sin2x + \frac{1}{8}sin4x)dx[/math] So you have the answer of: [math]\frac{3}{8}x + \frac{1}{4}sin2x + \frac{1}{32}sin4x + C[/math] You can use the integration checkup at http://integrals.wolfram.com/index.jsp AND IT MATCHES!! Let me know if you don't understand any of my steps in the calculations. I might have skipped a step. This was definitely out of my enterprise too.. I think I will learn more about this next semester. Anyways, let me know if you have any further questions.
  18. Tangent means a slope that touches a curve at one point.
  19. You would need to get Education degree, namely B.Ed to become a teacher.
  20. YEAH, I'm interested!! I never thought I am really bad at integrating trigonometric functions.
  21. I must apologize to you, but I'm not so good in Calculus either, as I'm only in my 1st year in university. But I KNOW this: You need to know how to use chain rule to be able to integrate the powers. Let use the example of [math]\int cos^3x dx[/math], ok? [math]\int cos^3x dx = \int cos^2x \cdot cosx [/math] You know that [math]cos^2x+sin^2x = 1[/math] So you have: [math]\int (1-sin^2x)cosx[/math] Then you use the Chain Rule, so you let [math]u=sinx[/math] and [math]du=cosxdx[/math]. [math] \int (1-u^2)du[/math] Use the Integration Rule, you get: [math]u - \frac{1}{3}u^3 + C[/math] Replace the u and you have the answer. [math]sinx - \frac{1}{3}sin^3x + C[/math] For your example of [math]cos^4x[/math], you would have [math] \int cos^2x \cdot cos^2x[/math]. Then you do the rest and use [math]u=sinx[/math]. Hope this helps!!
  22. EvoN1020v

    LCD Monitors

    I don't see any problem in having a CRT monitor. It might be bulky but at least it still show you the screen of the computer. The differences between LCD and CRT are quality and price.
  23. I don't see any purpose in having an account on MySpace, Facebook, MSN Spaces, or those other blog sites. I think it's a total waste of my own time, and having strangers look in your personal life. No offence. I was reading my university weekly newspaper, and it had an article in it about a guy named Josh who got his 16 millionith friend on MySpace. What life is that?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.