• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

A mathematical question for you

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #11
    Originally posted by NotAllThere View Post
    Easy

    (n digits)9
    x 4
    9(n-1 digits)6


    So the hundred's digit is 6. Continue to get 230769

    And they have to do that without a calculator? Jeepers.
    "Never argue with stupid people, they will drag you down to their level and beat you with experience". Mark Twain

    Comment


      #12
      Originally posted by NotAllThere View Post
      Easy

      (n digits)9
      x 4
      9(n-1 digits)6


      So the tens digit is 6. Continue to get 230769
      FTFY
      …Maybe we ain’t that young anymore

      Comment


        #13
        Ask 10 different computer people, get 10 different mechanisms to find the answer. Quick, crufty, lazy perl method:

        #/usr/bin/perl
        my $special = 9;
        my $boo = 0;
        while ($boo == 0) {
        my $new = $special * 4;
        my $trans = $special;
        chop $trans;
        $trans = "9$trans";
        if ($new == $trans) {
        print "$special\n";
        $boo = 1;
        } else {
        $special += 10;
        }
        }

        $perl number
        230769

        Fairly sure this is a difficult one for those 10/11 year olds.
        Taking a break from contracting

        Comment


          #14
          Originally posted by NotAllThere View Post
          Easy

          (n digits)9
          x 4
          9(n-1 digits)6


          So the tens digit is 6. Continue to get 230769
          Originally posted by WTFH View Post
          FTFY
          Still involves a fair amount of guesswork or manual counting though! I am shocked that this was in an 11+ paper

          Comment


            #15
            Originally posted by scooterscot View Post
            Obviously, just it wasnae specific.
            What base?

            Comment


              #16
              yes
              "Never argue with stupid people, they will drag you down to their level and beat you with experience". Mark Twain

              Comment


                #17
                Originally posted by ChimpMaster View Post
                Still involves a fair amount of guesswork or manual counting though! I am shocked that this was in an 11+ paper
                Yup, too hard for me. I was going through it in excel randomly. I then tried to break it down as follows:
                The first two digits must be 22, 23 or 24 (less than 22 will start with 8, more than 24 will give you a 1)
                The second to last digit is a 6 (4x9 = 36)
                Getting the ones in between was the guesswork bit
                …Maybe we ain’t that young anymore

                Comment


                  #18
                  God you lot are thick cretins.



                  QED, it's nuffink. Do I win a prize?

                  Comment


                    #19
                    Gah missed this.
                    There's no guesswork to it.
                    Once you've figured out the 10s digit is 6, you can keep going, multiplying by 4 till you get the answer.
                    Hard Brexit now!
                    #prayfornodeal

                    Comment


                      #20
                      Originally posted by DimPrawn View Post
                      God you lot are thick cretins.



                      QED, it's nuffink. Do I win a prize?
                      That should be a 26 half way down, not 28.
                      What happens in General, stays in General.
                      You know what they say about assumptions!

                      Comment

                      Working...
                      X