Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#51 Re: Maths Is Fun - Suggestions and Comments » Log out error » 2014-11-06 10:15:33

Happens in Chrome, Firefox and Opera (I use all 3 occasionally).

#52 Re: Maths Is Fun - Suggestions and Comments » Log out error » 2014-11-06 08:44:03

No error message.

There are several other instances where I get logged out as well.

#53 Maths Is Fun - Suggestions and Comments » Log out error » 2014-11-06 06:25:53

ShivamS
Replies: 5

Every time I click the banner on the top or make a post, I get logged out.

#54 Re: Introductions » Why I'm here » 2014-11-06 05:34:17

PatternMan wrote:

lol yep I'm not good enough. Well at least Spivak is going to be too much of an uphill battle for me to keep progressing for now. I have not fully mastered elementary algebra since occasionally I run into a basic problem where I get stuck and routinely get bewildered on brilliant.orgs more difficult ones. Does anyone know any rigorous algebra books? Is gelfand's algebra good enough for this? I haven't read it. I would like the ones that use an axiomatic approach. You know the ones that give the definitions, theorems and then prove them. Then they have the corrolaries and all that good stuff. Also I think it's best that I go through an introductory proof book. Do you know any great introductory ones?

I think you may be underestimating yourself a little. The only preparation you need for Spivak/Apostol is Lang's "Basic Mathematics" along with some precalculus.

If you are looking for an algebra book, Gelfand and Sullivan are two good options. You would be hard pressed to find an algebra book that is in the form Definition-Theorem-Proof (I don't see why you would want to either) but those two books proof enough theorems.

Going through a whole book on proofs might be a little too much. Just search some basic notes on it online. However, if you do need a book somewhere down the line, a great one is "How to Prove It: A Structured Approach" by Daniel Velleman.

By the way, you might also want to check out Apostol's calculus book. In some aspects, it is a little better than Spivak. For example, Apostol covers Linear Algebra, puts an emphasis on history and covers integral calculus before differential calculus.

#57 Re: Help Me ! » Permutation Problems » 2014-11-05 02:09:22

Agnishom wrote:

I wish I had seen this earlier, I just mailed my solution to Axas.

What competition is that?

That guy who posted it on Brilliant has asked the problem on SE and PF already (locked on SE and deleted on PF).

The competition is USAMTS.

#58 Re: Coder's Corner » Sum of R primes? » 2014-11-04 14:17:31

Agnishom wrote:

Logic please?

Assume that the Goldbach conjecture is true (to the limit in the problem).

Now, break it into cases:

N < 2K: The answer is “No”, because the sum of K primes is at least 2K.
N ≥ 2K and K = 1: The answer is “Yes” if N is prime, and “No” otherwise.
N ≥ 2K, K = 2 and N is even: The answer is “Yes” (by Goldbach’s conjecture).
N ≥ 2K, K = 2 and N is odd: The answer is “Yes” if N − 2 is prime, and “No” otherwise. This is because the sum of two odd primes is even, and the only even prime number is 2, so one of the prime numbers in the sum must be 2.
N ≥ 2K and K ≥ 3: The answer is “Yes”. This is because if N is even, then N − 2(K − 2) is also even, so it is the sum of two primes, say p and q (by Goldbach’s conjecture). Thus, N is the sum of the K primes 2, 2, 2, ..., p, q. And if N is odd, then N − 3 − 2(K − 3) is even, so it is the sum of two primes, say p and q. Thus, N is the sum of the K primes 3, 2, 2, ..., p, q.

#59 Re: Help Me ! » Permutation Problems » 2014-11-04 07:40:07

Agnishom wrote:

In a remedial math class, the teacher decides to seat the students in an IQ order. The seats are setup in a way that they appear in a horizontal line. The order is such that when a hypothetical person x is to the left of a hypothetical person y, and x is not more than 8 IQ points higher than y.

For Example, Say that in the math class, there are five students that have IQs of 60, 65, 70, 75, and 80. The students would be put in an order of 60, 70, 65, 80, 75.

So, if the class had 20 students with IQ scores: 20, 25, 30, 35, 40, 45, 50, 55, 60, 64, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110. How many different ways are possible to place these students in an order defined above.

#Combinatorics #IQ

It might be best to halt discussions on the solution to this problem on here and on Brilliant as this is a question that is a part of a mathematics competition that will accept submissions until November 5, 2014.

#60 Re: Coder's Corner » Sum of R primes? » 2014-11-04 07:29:33

Agnishom wrote:

Does Goldbach help?

This code uses the Rabin-Miller algorithm and Goldbach conjecture

I believe that this solution works (it is in Python 3)

import math, random, sys


def is_probable_prime(n, k = 7):
    
    if n < 6:  
        return [False, False, True, True, False, True][n]
    
    elif n & 1 == 0:
        return False
    
    else:
        s, d = 0, n - 1

        while d & 1 == 0:
            s, d = s + 1, d >> 1

    for a in random.sample(range(2, n - 2), min(n - 4, k)):
        x = pow(a, d, n)

        if x != 1 and x + 1 != n:
            for r in range(1, s):
                x = pow(x, 2, n)

                if x == 1:
                    return False  
                elif x == n - 1:
                    a = 0  
                    break  
        
            if a:
                return False  

    return True


if __name__ == '__main__':
    T = int(sys.stdin.readline())

    
    for _ in range(T):
        N, K = list(map(int, sys.stdin.readline().split()))

        
        if N < 2 * K:
            print('No')
        
        elif K == 1:
            print('Yes' if is_probable_prime(N) else 'No')
        
        elif K == 2:
            if N % 2 == 0:
                print('Yes')
            else:
                print('Yes' if is_probable_prime(N - 2) else 'No')

        else:
            print('Yes')

#61 Re: Help Me ! » Algebra Questions » 2014-11-01 05:42:21

Agnishom wrote:

3. There are two 2-digit numbers x and y such that when the digits of their arithmetic mean are reversed, their geometric mean is found. Find x-y.

#62 Re: Help Me ! » Algebra Questions » 2014-11-01 05:11:35

Agnishom wrote:

3. There are two 2-digit numbers x and y such that when the digits of their arithmetic mean are reversed, their geometric mean is found.

What is the question?

#63 Re: Introductions » I'm Back! (Part 2) » 2014-11-01 01:28:12

Great to have you back, mathaholic!

Welcome to the forym, Rinni!

#64 Re: Euler Avenue » Publishing for Amateur Mathematicians » 2014-10-31 09:44:21

While it is not true that you should be in academia to publish papers, there are some drawbacks. Authors writing by themselves are welcome, but they somehow are not very common because they lack the ability of writing an academic paper: they do not lack the message or the content of a paper, but just the structure, and that's something that you learn in an academic environment.  One famous example is Paul Erdos ( http://en.wikipedia.org/wiki/Paul_Erd%C5%91s#Career ), who I believe had no affiliation (at least in practice) for much of his life. However, most cultures have certain standard ways of doing things. Academia, and in particular the part of it that you want publish in, is no exception. One thing you can do to help get your ideas accepted is to learn to write and talk in the language common to your research area. Specifically, find some papers in your area that you really like (even better if they are widely cited) and study how they are written. When you write your own papers, make a conscious effort to copy the writing style of the papers you like. One key part of this is to thoroughly know the relevant literature (previous work on the problem) and to mention it in your introduction and explain how your work relates to it. For each research area, there are numerous other hurdles you should jump. For example, if you're writing a math paper, do it in LaTeX. If you don't know LaTeX, learn it (ask Google, if you need help), since using it will make your paper more readily accepted. For a list of other criteria often used by mathematicians to quickly judge a paper, read http://www.scottaaronson.com/blog/?p=304 .

If you are clueless in knowing where to publish your work, then I am guessing that you are also not familiar with all the relevant mathematics journals out there. This then leads me to conclude that you haven't been doing any sort of an extensive literature search on the state of knowledge of whatever area it is that you did your "independent research" on.

So my questions to you are:

1. How would you know your work is "valid" and free of errors and misunderstanding? The validity would come from self-consistency with the existing theories, and from experimentally verified observations.

2. How would you know that what you have done has not been published already, or has already been disproven?

Please note that the probability of someone without a formal education in mathematics, coming up with something "new" on any topic in mathematics, is practically zero. Don't believe me, just try finding the last time this has happened. Unless you believe that you have an unusually exceptional quality, insight, and abilities, I strongly suggest you do not fall into such illusion and make sure first that what you have is halfway decent. Find someone who has a mathematics qualification and ask him/her to review what you have done. Even Nobel Prize laureates give their manuscripts to someone else for a 2nd opinion, so why not you?

#65 Re: Dark Discussions at Cafe Infinity » Atheism Study » 2014-10-28 04:40:59

Agnishom wrote:

Okay.

What has religious texts got to do with atheism?

Nothing, in this context. It was just a small part of my original post.

#66 Re: Dark Discussions at Cafe Infinity » Atheism Study » 2014-10-28 04:37:42

Agnishom wrote:

Most of religious texts are pacifying. Not all parts, though.

Although practically all parts help in understanding an important moral value.

#67 Re: Dark Discussions at Cafe Infinity » Atheism Study » 2014-10-28 04:29:49

I used to think I was an atheist, but as soon as I deeply analysed prominent religions (along with reading their texts), I realized how logical they are. Along with that, it is immensely pacifying to read through it.

#68 Re: Jokes » Experimental Mathematics Troll » 2014-10-26 05:32:41

Agnishom wrote:

but he said that he definitely enjoyed assisting a valuable mathematician like me

Yeah I think he said that because he isn't allowed to be rude.

#69 Re: Jokes » Experimental Mathematics Troll » 2014-10-26 04:46:11

Agnishom wrote:

Isn't the Riemann Hypothesis too difficult to explain to them?

I don't think they understood what you said in the original post either.

#73 Re: Introductions » Why I'm here » 2014-10-16 10:49:50

PatternMan wrote:

To be fair I already knew most of elementary algebra. I just didn't understand it and needed to fill in lots of gaps. lol I just scanned through the online book. It will probably take me till next summer to go through this properly. But it doesn't seem that intimidating after going through Serge Lang's books. It seems to follow from there quite easily. I just feel maybe I should go through trigonometry and proofs in more detail first. Oh well good luck to me. xD

If you're confident about it then you should go ahead, algebra/precalculus is too boring anyway.

#74 Re: Introductions » Why I'm here » 2014-10-15 08:38:48

PatternMan wrote:

Hello guys it's been a while. I have been very busy crash coursing the basics of the sciences. I'm learning physics now(classical mechanics). Kinematics, dynamics, newtons laws etc... It's algebra based not calculus based. I'm looking to transition to calculus very soon. I'm just going over logarithms and trigonometry stuff.

Is this the book right book? I will try to devour it in 2 weeks next month. I don't care if I can't do the problems as long as I understand the definitions, rules, applications etc....

http://www.ebay.co.uk/itm/Calculus-by-Michael-Spivak-third-Edition-/121459248987?pt=LH_DefaultDomain_3&hash=item1c47890f5b

That is the right book (by the way, it is available online and legally at https://archive.org/details/Calculus_643). Although, I'm pretty surprised you're covered precalculus/algebra already. However, even if you have a few gaps, you can fill them up later.

As for the problems, they are basically a must if you want to gain a good level of understanding. They're half the reason why Spivak is such a good book. Also, even if you put in about 8 hours a day, Spivak in 2 weeks is pretty ambitious.

#75 Re: Dark Discussions at Cafe Infinity » Princeton, Harvard and MIT? » 2014-10-10 10:25:17

Olinguito wrote:

Well, they’re not that difficult. wink


#1. What is CD in Roman numerals?

#2. The cube of a number is that number multiplied by itself three times – true or false?

#3. What is the pseudonym of the writer Mark Twain?

Not really difficult as they are easy questions, so you'll naturally think that they might be trick questions.

Board footer

Powered by FluxBB