Author Topic: Math Community Quiz  (Read 50588 times)

0 Members and 1 Guest are viewing this topic.

Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: Math Community Quiz
« Reply #135 on: January 23, 2011, 02:52:36 am »
heh well we will wait for a day or two and let everybody work on yours then :)

i am a troll

  • Guest
Re: Math Community Quiz
« Reply #136 on: January 23, 2011, 05:12:13 pm »
if i'm traveling at a rate of 40 mph, my destination is 120 miles away and i've been traveling for two hours, how long until i reach my destination. just kidding you probably did that in your head as you read it. the real question is on the way, i'm currently solving it..


edit: the problem.

constituents:
2x2 matrix N
2x2 matrix P filled with ascending perfect numbers. i.e. if 1 2 3 and 4 were perfect numbers, P is [[1 2][3 4]]
2x2 matrix K whose values ascend just like P's, and is filled with only prime numbers, and the values when summed add up to 185.

Assuming P * K = N, what is the determinant of N? also, i want to see matrix P and K to check to make sure you solved the problem correctly. answers without P or K will be disregarded.

edit2: shoot i forgot! the determinant of K must be -2735...
K=[[2 43][67 73]] but P is not determined so how are we supposed to know what the determinant of N is?

Ashbad

  • Guest
Re: Math Community Quiz
« Reply #137 on: January 23, 2011, 05:21:38 pm »
Let's say we have a piece of 64 byte data in L1 (pretend also that it's in axe format)

with data supposed to be set up in a 4x4x4 3D array, The first 16 bytes of the 64 are [1,2,3,4,6,7,8,9,11,12,13,14,16,17,18], the next 16 bytes are [19,21,22,23,25,26,27,29,30,31,33,34,35,37,38], and the last 24 bytes are [52,53,55,56,58,59,61,62,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93].

Find a function (can utilize equality operators such as = and >) that shows the pattern of these 64 numbers.

EDIT: and good luck.
« Last Edit: January 23, 2011, 05:24:11 pm by Ashbad »

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Math Community Quiz
« Reply #138 on: January 23, 2011, 05:26:42 pm »
Erm, did the rules change...?

Ashbad

  • Guest
Re: Math Community Quiz
« Reply #139 on: January 23, 2011, 05:28:44 pm »
oh, sorry :(

but then again, now there's two challenges at once, in case you're stuck on one.

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Math Community Quiz
« Reply #140 on: January 23, 2011, 05:29:11 pm »
Err... three actually, now :D

Ashbad

  • Guest
Re: Math Community Quiz
« Reply #141 on: January 23, 2011, 05:29:29 pm »
oh, lol :P

i am a troll

  • Guest
Re: Math Community Quiz
« Reply #142 on: January 23, 2011, 05:31:13 pm »
Is this a new problem? But no one has solved nemo's or Builderboy's problem yet and I'm really confused about nemo's.
well if it is  a new problem then i'm also sort of confused thay are'nt even 64 numbers ther(16+16+24=56)

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Math Community Quiz
« Reply #143 on: January 23, 2011, 05:34:08 pm »
For the first one, if you have a Y table of {1,2,3,4,6,7,8,9,11,12,13,14,16,17,18} that correspond to x values {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14} and Axe automatically rounds down for decimals, then:
(X+1)+X/4

I'm gonna work on the others, now.

Edit 1: If the second set uses a similar pattern, the equation is x+(x-1)/3+19
Edit 2: The third set is (x+52)+x/2. Now I need to find an equation for all this :D

Offline nemo

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1203
  • Rating: +95/-11
    • View Profile
Re: Math Community Quiz
« Reply #144 on: January 23, 2011, 07:33:02 pm »
if i'm traveling at a rate of 40 mph, my destination is 120 miles away and i've been traveling for two hours, how long until i reach my destination. just kidding you probably did that in your head as you read it. the real question is on the way, i'm currently solving it..


edit: the problem.

constituents:
2x2 matrix N
2x2 matrix P filled with ascending perfect numbers. i.e. if 1 2 3 and 4 were perfect numbers, P is [[1 2][3 4]]
2x2 matrix K whose values ascend just like P's, and is filled with only prime numbers, and the values when summed add up to 185.

Assuming P * K = N, what is the determinant of N? also, i want to see matrix P and K to check to make sure you solved the problem correctly. answers without P or K will be disregarded.

edit2: shoot i forgot! the determinant of K must be -2735...
K=[[2 43][67 73]] but P is not determined so how are we supposed to know what the determinant of N is?

P is defined as 4 perfect numbers in ascending order. a perfect number is a number whose factors sum up to the number itself. 6 is a perfect number. its factors are 1 2 and 3 which, when summed, equals the number itself: 6.

ashbad, i'm confused about your question. storing data linearly then thinking about it as a 4x4x4 3D array for a math problem wasn't to my advantage so i discarded that portion. and you only listed 54 pieces of data so i really don't know where you got the number 64 other than 4 * 4 * 4 is 64. anyway. here's the function though i don't really deserve it. i just plugged in Xeda's equations and hope they work.

f(X)=((X+1)+X/4)*(X<15)+(X+(X-1)/3+19)*(X>14)*(X<30)+((X+52)+X/2)*(X>29))
« Last Edit: January 23, 2011, 07:35:08 pm by nemo »


i am a troll

  • Guest
Re: Math Community Quiz
« Reply #145 on: January 23, 2011, 07:56:48 pm »
Ya i know but there are more than 4 perfect numbers so we have no idea what P is. ???  the first 4 are 6 28 496 and something more than 8000. but they are more  more so we do not know yhich one are in the matrix.
Also Ashbad there are ifinitley many functions that satisfy it. ???   are we supposed to find all or just one?

Ashbad

  • Guest
Re: Math Community Quiz
« Reply #146 on: January 23, 2011, 09:13:59 pm »
Is this a new problem? But no one has solved nemo's or Builderboy's problem yet and I'm really confused about nemo's.
well if it is  a new problem then i'm also sort of confused thay are'nt even 64 numbers ther(16+16+24=56)

well, there is, I just didn't specify what 8 of the bytes were ;)

and sorry xeda, incorrect.

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Math Community Quiz
« Reply #147 on: January 23, 2011, 09:15:55 pm »
[1,2,3,4,6,7,8,9,11,12,13,14,16,17,18] is 15 bytes.

Ashbad

  • Guest
Re: Math Community Quiz
« Reply #148 on: January 23, 2011, 09:19:23 pm »
oops O.o  ok just imaging a 19 there :P

Offline nemo

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1203
  • Rating: +95/-11
    • View Profile
Re: Math Community Quiz
« Reply #149 on: January 23, 2011, 09:21:11 pm »
f(X)=((X+1)+X/4)*(X<15)+(X+(X-1)/3+19)*(X>14)*(X<30)+((X+52)+X/2)*(X>29))

so is this a no-go or what?