Recent content by Sam_

  1. S

    Undergrad What are the solutions to these diaphontine equations?

    So help me with this: this are simultanious equations. 1/(x^2) + x^2 -7 = 0 && 1/x + x -y = 0 What is y?
  2. S

    Chemistry What Is the Molecular Formula of the Hydrocarbon?

    Homework Statement 0.1 dm^3 of a gaseous hydrocarbon may require 0.45 dm^3 of oxygen for a complete combustion to give 300 cm^3 of Carbon dioxide. All volumes are measured in the same environment. Calculate the molecular formula of the hydrocarbon. The Attempt at a Solution i tried...
  3. S

    Graduate Proving Infinitely Many Pairs of Positive Integers for Sum Equation

    Show that there are infinitely many pairs of positive integers (m, n) such that (m + 1) / n + (n + 1) / m is a positive integer.
  4. S

    Graduate Sum of 6th Roots of x^6 - 1 for n

    For n a nonnegative integer, what (in terms of n) is the sum of the n-th powers of the roots of the polynomial x^6 - 1 ?
  5. S

    C# Getting Started with C# for Beginners

    using System; public class Addition { public static void Main( string[] args ) { int number1; int number2; int sum; Console.Write( "first integer: " ); number1 = Convert.ToInt32( Console.ReadLine() )...
  6. S

    C# Getting Started with C# for Beginners

    This is for very beginners, trying to start up with C#. I'll post some short notes when I'm free. I hope to make this into a useful collection of information on C# programming language. Feel free to ask any questions. For now, you will need Visual Studio .NET, there is an express edition...
  7. S

    Undergrad Average and median winnings in repeated coin toss betting game

    I think you have the right idea, but there are some details. There are N+1 ways to have a+b=N, but they do not all have equal probability. To have a=b=N/2 is much more probable than to have a=0 and b=N. The probability of a=M and b=N-M is {(N)!/[(M)!(N-M)!]}/(0.5^N), so to find the mean you need...
  8. S

    High School What is the formula for finding the square inch area of an oval?

    That is an ellipsoid. http://en.wikipedia.org/wiki/Ellipsoid The surface area is a bit complex if you want exactly. http://en.wikipedia.org/wiki/Ellipsoid#Surface_area
  9. S

    Undergrad Average and median winnings in repeated coin toss betting game

    That is correct. can you please explain how you got that?
  10. S

    Undergrad Average and median winnings in repeated coin toss betting game

    In a gambling game, a gambler wins 0.5 for each 1.0 of the bet if a coin toss is "heads," and loses 0.4 if the coin toss is "tails." So if he bets five Australian dollars, then he wins 2.5 if the coin is heads, and loses 2.0 if it is tails. Now, suppose someone plays this game repeatedly with...
  11. S

    Graduate How did Ramanujan derive his formula for pi?

    Hi, can you please explain to me how Ramanujam got this formula for pi. Thank you.
  12. S

    HTML/CSS I'm trying to center box in CSS and HTML

    Please help! Does anyone here know much about CSS and HTML? I'm trying to center box (have it as a span with a div inside - a box in a box) both horizontally and vertically. I can get it to work just fine in Firefox, but IE won't let me do it. I've tried everything I can think of, I've looked...
  13. S

    Graduate What is the closed form for this?

    Hi Gib_Z, Sorry, I didn't mean to torture you And thanks for the explanation. I was wondering about this the other day and thought what better place to ask about it than here.
  14. S

    Graduate What is the closed form for this?

    Infinite Sum [n=1] 1/Fibonacci[n] Or this, Infinite Sum[n=1] 1/(n^n) Using some known mathematical constants.