Wikipedia:Reference desk/Archives/Mathematics/2007 October 3

From Wikipedia, the free encyclopedia
Mathematics desk
< October 2 << Sep | October | Nov >> October 4 >
Welcome to the Wikipedia Mathematics Reference Desk Archives
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


October 3[edit]

TI-89 Question[edit]

I want to solve an equation but restrict the domain to integers. ex. Solve(2^x+1=3^y-1,{x,y}), but i want to restrict it. How would I do that? xxpor yo!|see what i've done 02:33, 3 October 2007 (UTC)[reply]

You wouldn't. You can't. You'd need a very, very advanced calculator to solve diophontine (sp?) equations, seeing as we can't always find a method for solving them -- that's a number theory thing, not simple math. Sorry! Gscshoyru 02:39, 3 October 2007 (UTC)[reply]

I wish to point out that 2^x and 3^y are not polynomials. This makes it even harder to solve. Looking at the equation

2^x + 1 == 3^y - 1
2^x + 2 == 3^y
Since x and y are integers. We can try y=0,1,2,3,4,...
and look for 3^y that are even since "2^x + 2" is even.
Find all 3^y that are even and "3^y - 2" that are of the form 2^x

But of course this is just brute force and not elegant. I must be stupid because I'm having trouble finding integer values of y such that 3^y is even. How odd! 202.168.50.40 03:47, 3 October 2007 (UTC)[reply]

In case the original questioner misses the point, the answer is that there are no solutions to 2^x+1 = 3^y-1 in positive integers because 2^x+1 is odd and 3^y-1 is even. No calculator required. Gandalf61 09:26, 3 October 2007 (UTC)[reply]
If you don't require the integers to be positive, however, there is one solution.  --Lambiam 09:42, 3 October 2007 (UTC)[reply]

lol @ Lambiam's approach. I love loopholes like that!

--Mostargue 18:29, 3 October 2007 (UTC)[reply]

Also, see Diophantine equation.--Mostargue 18:34, 3 October 2007 (UTC)[reply]

Haha, I mixed up, its . but there must be someway in general restrict the domain to integers. xxpor yo!|see what i've done 18:36, 3 October 2007 (UTC)[reply]
Again, see diophantine equations. In the case that you've given, though, with only one variable, there are exactly three complex solutions (possibly real, possibly rational, possibly integer). With two variables, the problem becomes much more complicated. Although can be easily re-written in a standard form as an elliptic curve and solved using those methods. Donald Hosek 20:16, 3 October 2007 (UTC)[reply]

Collect like terms:

From here, you can use synthetic division to find the roots.

Just from looking at it right now, I can tell there is an odd number of roots between 1 and 2. So, either you have 2 more chances of finding getting integer roots, or none. Good luck ^_^.--Mostargue 05:36, 4 October 2007 (UTC)[reply]
Actually, that's not quite right. If the single-variable equation has any integer solutions, they can be any of . The simplest approach is not to use synthetic division though. It's far easier to just plug each of these four possible values into the polynomial and see if they work out (here's a hint, they don't). I think the most likely scenario is that the OP was really looking for integral solutions to the elliptical curve . Donald Hosek 21:24, 4 October 2007 (UTC)[reply]

Linear System Elimination Method[edit]

I can use the elimination method to solve equations, but I can't understand why it works, which really bothers me when I use it. My algebra book explains absolutely nothing about why anything is true (which is extremely frustrating!). Could someone please give me an explanation of why this works. Thanks in advance. Imaninjapiratetalk to me 03:24, 3 October 2007 (UTC)[reply]

Gaussian elimination, which I believe is the method being discussed, relies on the fact that the solution to a system of linear equations is not changed under any of the following operations:
  1. Multiplying both sides of one equation by a non-zero number. (e.g. 2x = 2 has the same solution as 4x = 4).
  2. Swapping two of the equations around. (e.g. 3x + 2y = 5, x - y = 1 has the same solution as x - y = 1, 3x + 2y = 5).
  3. Adding a multiple of one of the equations to another. (A little trickier, but if you just think in terms of adding two equations together, then 3x + 2y = 5, x - y = 1 has the same solution as 3x + 2y = 5, (x - y) + (3x + 2y) = 4x + y = 5 + 1 = 6).
Gaussian elimination is then just a systematic method of applying these three operations to simplify the equations. Confusing Manifestation 03:56, 3 October 2007 (UTC)[reply]
We can think of a system of linear equations in many ways, each providing insights and benefits.
  • When we have a single linear equation in a single variable, we can always write it as ax = b. That is, a constant multiplied times a variable equals a constant. Assume a is not zero (important!); then it has a reciprocal (a multiplicative inverse) denoted by 1a or a−1. If we multiply both sides of an equation by the same quantity, the truth of the equality is preserved. Since a−1a = 1 (by definition), we easily obtain x = a−1b, or x = ba as a solution.
  • In advanced mathematics, we can use matrices to follow an almost identical approach with a system of n equations in n variables, writing Ax = b. The definition of "multiplicative inverse" becomes richer, so we need to be more careful to decide if A−1 exists. For large systems, elimination is almost always approached using matrices, though explicit use of an inverse is rare.
But let's look at two linear equations in two variables. Generically, the form is
As before, we can multiply either equation by a constant (on both sides). We can also preserve equality by adding equal quantities to both sides. That sounds simple enough, but consider that the left side of the first equation equals its right side. Thus we can add the left side of the first equation to the left side of the second, and the right side of the first equation to the right side of the second. We call this "adding the two equations".
Assume that a11 is not zero (again, important). Then it has an inverse, and we may multiply by it.
Save this for future reference; but now multiply the new equation by −a21.
We need not assume a21 is nonzero, though we're wasting effort if it is. Because our next step is to add this revision of the first equation to the second. When we do, we eliminate x1; hence the name of the method.
But now our second equation has the simple form of a single linear equation in a single variable, which we already know how to solve so long as a22 is nonzero.
Having solved for x2, we next multiply both sides of this final form of the second equation by −a12.
The final step is easy to anticipate; we add this equation to the saved version of the first equation.
Et viola! The first equation displays the solution for x1, as the second equation does for x2.
Thoughout, we used only three procedures:
  • Given a nonzero coefficient, find its multiplicative inverse.
  • Multiply both sides of an equation by a constant.
  • Add one equation to another.
For safety, we must include another step:
  • Order the equations so that the first equation has the largest coefficient for x1 (in magnitude).
The methodical approach here used for two equations in two variables extends readily to n equations in n variables. In matrix form, we call it LU decomposition with partial pivoting. (To "pivot" is to reorder the equations.) It is quite likely the single most important, and most heavily used, algorithm in all of applied mathematics. --KSmrqT 10:20, 3 October 2007 (UTC)[reply]

sum of sum of sum... of factors[edit]

You start off with a number such as 138. Using the definition given in Perfect number, the sum of its factors is 150. The sum of the factors of 150 is 222. If you continue taking the sum of the factors, you eventually (after 168 times) get a prime number which has a sum of 1. My question is, are there any starting numbers which will never lead to 1 and continue increasing infinitely? I am excluding perfect numbers, numbers which lead to perfect numbers (25 leads to 6), and numbers such as 220 and 284 which lead to each other. 68.231.151.161 06:04, 3 October 2007 (UTC)[reply]

There are periodic sequences, such as Amicable numbers. What you are describing is an Aliquot sequence, and it is unknown whether or not there are infinite sequences (that do not repeat). - Rainwarrior 06:23, 3 October 2007 (UTC)[reply]
Wow thanks... that's exactly what I was looking for. 68.231.151.161 06:42, 3 October 2007 (UTC)[reply]
According to MathWorld, the longest periodic aliquot sequence known has period 28 and smallest member 14316. It is also interesting to note that there are fairly small numbers (like 276) whose aliquot sequences are not completely known, because they go above the range of practical factorisation. Gandalf61 09:10, 3 October 2007 (UTC)[reply]

competition[edit]

Has USA announced any competition which involves solving of 10 tough problems?If so please inform me of that. 59.96.27.63 11:50, 3 October 2007 (UTC)[reply]

There is a list of seven tough problems known as the Millenium Prize Problems, set by the Clay Mathematics Institute. One of the six has been solved. See also Unsolved problems in mathematics.  --Lambiam 12:21, 3 October 2007 (UTC)[reply]
If you're talking about national versions of the International Mathematical Olympiad, take a look at USAMO. Black Carrot 07:56, 4 October 2007 (UTC)[reply]
And at the university level, there's the Putnam. That's 12 questions, though. J Elliot 16:06, 4 October 2007 (UTC)[reply]

vivinia's theorem[edit]

I also wanted to know about vivinia's theorem. 59.96.27.63 11:50, 3 October 2007 (UTC)[reply]

Could it be that you are looking for Viviani's theorem?  --Lambiam 12:25, 3 October 2007 (UTC)[reply]

Sin2A problem[edit]

Can you prove sin2A=2sinAcosA geometrically? 59.96.27.63 11:50, 3 October 2007 (UTC)[reply]

Sure. Take an isosceles triangle with "top" angle equal to 2A. The area of the triangle, using the formula area = ½bh in which b = base and h = height, can be computed two ways, depending on which side is taken as the base. Equating the two gives you the desired result.  --Lambiam 12:16, 3 October 2007 (UTC)[reply]

You can prove most trig identities geometrically. Just rewrite the trig function as its geometric definition. Let a,b,c be the sides of a right triangle.

  • Thus:

Remember that because it is a right triangle, See if you can figure out the rest =)--Mostargue 17:54, 3 October 2007 (UTC)[reply]

Perhaps you, 59.96.27.63, are interested in a book called "Proofs Without Words" (well, they are actually two books). There are proofs for what you just asked and many, many more. --Taraborn 20:17, 3 October 2007 (UTC)[reply]

Comparing complex numbers[edit]

Do the inequality symbols <, >, ≤, and ≥ have any meaning under complex numbers? My first guess was to take the absolute value of the complex numbers and compare them, but that's performing a function on them, which may change the equality (x > y does not imply f(x) > f(y), which definitely doesn't hold true for the absolute value function ).--Mostargue 18:59, 3 October 2007 (UTC)[reply]

No, you can't use < and > on the complex numbers, though you can of course on their moduluses.--PaulTaylor 19:09, 3 October 2007 (UTC)[reply]
There is no standard meaning. You could introduce your own ordering, for example by defining:
u + iv ≤ x + iy  ↔  u < x OR (u = x AND v ≤ y).
Then 1 < i < 2. This is essentially the lexicographic ordering on a pair of numbers. However, for complex numbers this is not a particularly useful relation for a working mathematician. In particular, it would destroy the symmetry between i and −i: if P[i] is the conclusion of a theorem involving i, then P[−i] is also a true proposition. For example, take P[j] := (1+j)(2–j) = (3+j). Then P[i] is the proposition (1+i)(2–i) = (3+i), which is true, and therefore P[−i], the proposition (1−i)(2+i) = (3−i), is also true. This would be broken by taking P[j] := 0 < j, which is true if you substitute i for j, but false when you do this with −i.  --Lambiam 20:44, 3 October 2007 (UTC)[reply]
The most useful ordering I know of is the partial ordering by absolute value. Black Carrot 07:54, 4 October 2007 (UTC)[reply]
You can of course use the inequalities separately on the real and imaginary parts of a complex number as you would normally87.102.94.194 15:48, 4 October 2007 (UTC)[reply]
You can, naturally, but given the lack of relationship with the algebraic/analytic structure of the complex numbers, I can't immediately see why you would want to. In particular, as Lambiam pointed out above, the symmetry between i and -i means any claim that -i<i (or vice versa) is unlikely to be useful. Algebraist 16:29, 4 October 2007 (UTC)[reply]

Volume of a "bowl"[edit]

How would you find the volume of a portion of a sphere that has been "sliced" in two? Obviously, if the cut is down the center, the volume of each resulting figure will be .5 that of the sphere, but what if the cut is, say, 1/3 along the diameter of the sphere? 70.146.164.160 21:00, 3 October 2007 (UTC)[reply]

See our article on spherical caps. Gandalf61 21:37, 3 October 2007 (UTC)[reply]
Which gives the answer, but not necessarily enough information. This sounds like a Calc II homework problem type thing (although it's early in the semester for this question. The calculus approach would be to use an integral to find the result so you're looking at where gives the radius of a slice of the sphere at vertical position x. I'll leave the determination of , a and b as exercises for the reader. Donald Hosek 23:17, 3 October 2007 (UTC)[reply]
In other words you need to be able to find volumes using integration.. If you don't know how to do this now would be a good time to ask..87.102.94.194 15:46, 4 October 2007 (UTC)[reply]
There are numerous pages that cover this - here is one if you need it - hopefully it should give enough info to get you started http://www.ugrad.math.ubc.ca/coursedoc/math101/notes/applications/volume.html - you can also integrate using angles as well as length - both methods are solvable.87.102.94.194 15:46, 4 October 2007 (UTC)[reply]