Thread: A little maths problem for you

  1. #106
    . Driveway's Avatar
    Join Date
    May 2002
    Posts
    469
    The answer is Dell. I'll show you:

    Code:
    Embark, Cotton, Orche, Calm, Small, Duvet, Frost
    
    Watch:
    
    The non-capital non-ascending letters (an example of ascending letters : tlkbdf) form words.  E(m)b(ar)k, C(o)tt(on)  (maroon)
    O(c)h(re), C(a)l(m) (cream)
    S(ma)ll, D(uve)t  (mauve)
    F(ros)t, D(e)ll  (rose)
    whoo, that was hard, wasn't it?

  2. #107
    . Driveway's Avatar
    Join Date
    May 2002
    Posts
    469
    Oh, would you look at that, 8 pages, answer to match stick please

  3. #108
    Unregistered
    Guest
    I wonder if we have to think in 3D to solve the matchsticks problem . . .

    Could've sworn I did a similar problem before.

  4. #109
    Registered User Jet_Master's Avatar
    Join Date
    May 2002
    Posts
    291
    ok. here is the match stick problem answer:

    Code:
                 ____
                |    | 
                |____|____
                     |    | 
                     |____|____
                          |    |
                          |____|
    i hope you get it. the four long sticks are used to form two "+" signs. then the four short sticks are used to complete both squares.
    Last edited by Jet_Master; 05-23-2002 at 08:16 PM.
    I am the Alpha and the Omega!!!

  5. #110

    OK, here's a new problem

    There are three people in front of you. You know that:

    One of them is God. He knows everything, and always tells the truth.
    One of them is the Devil. He also knows everything, but lies.
    The third person knows nothing, but answers questions as if he knows the answers. His answers, however, are completely useless and could be right or wrong.

    You can ask a total of three questions that can correctly be answered with yes or no, each to one of the persons. You may choose whom to ask.

    Determine who is who...

  6. #111
    Registered User Jet_Master's Avatar
    Join Date
    May 2002
    Posts
    291
    One of them is God. He knows everything, and always tells the truth.
    One of them is the Devil. He also knows everything, but lies.
    The third person knows nothing, but answers questions as if he knows the answers. His answers, however, are completely useless and could be right or wrong.

    You can ask a total of three questions that can correctly be answered with yes or no, each to one of the persons. You may choose whom to ask.

    Determine who is who...
    lemme try, i am not sure i am right, but here goes:

    - Ask the first person an obvious and universal question (example: Are you asleep?)
    - If he answers yes, he is the devil. if he answers no, go to next step:
    - Ask the second person the same question.
    - If he answers yes, he is the devil. if he answers no, go to next step:
    - If both people answered no, that means that the last one is the devil.

    --- now we know who the devil is.
    -ask the devil which one out of the other two is the god.
    - the one he points to is not the god. that is the person who knows nothing.

    So the person left is the god.

    ---------------------------------------------------------------------------
    that might not be the answer you are looking for, but i think that works... is that correct?
    Last edited by Jet_Master; 05-24-2002 at 07:27 AM.
    I am the Alpha and the Omega!!!

  7. #112
    Unregistered
    Guest
    But isn't 'ar' in Embark ascending and so is 'uv' in Duvet?

  8. #113
    back? dbaryl's Avatar
    Join Date
    Oct 2001
    Posts
    597
    I think you're almost there, but...
    - Ask the first person an obvious and universal question (example: Are you asleep?)
    - If he answers yes, he is the devil.
    This could be the reguar person as well, he could be lying... I think.

    Oh, also, the Devil does not know everything
    This is my signature. Remind me to change it.

  9. #114
    Registered User
    Join Date
    Dec 2001
    Posts
    367
    A glass has the shape of a cone upside down:

    \ /
    |

    The diameter at the top of the glass is 6cm, the height of the "cone" is 8cm. The ones who manufacture the glass wants it to fill 10% more liquid. How do you measure the glass to accomplish this?

    A cone has a circle at the bottom. You probably already know the formula for calculating the area of a circle. The formula for calculating the volume of the whole cone is: base area (circle) multiplied with the height, divided by 3.
    Last edited by Zewu; 05-24-2002 at 01:04 PM.

  10. #115
    . Driveway's Avatar
    Join Date
    May 2002
    Posts
    469
    Originally posted by Unregistered
    But isn't 'ar' in Embark ascending and so is 'uv' in Duvet?
    Think of it this way....

    if a letter ascends, it goes past an imaginary half-way point. The only ascending non-capital letters are-
    l, k, t, f, b, d (sometimes the j ascends, depends what font you are using)

  11. #116
    Registered User
    Join Date
    Apr 2002
    Posts
    200
    The diameter at the top of the glass is 6cm, the height of the "cone" is 8cm. The ones who manufacture the glass wants it to fill 10% more liquid. How do you measure the glass to accomplish this?
    I am not sure i understand. Are you asking for a way to fill the cone 1/10 with water? If so, are you allowed to use anything besides the glass itself?
    I go to encounter for the millionth time the reality of experience and to forge in the smithy of my soul the uncreated conscience of my race.

    Windows XP consists of 32 bit extensions and a graphical shell for a 16 bit patch to an 8 bit operating system originally coded for a 4 bit microprocessor, written by a 2 bit company, that can't stand 1 bit of competition.

  12. #117
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    Code:
    #define G God
    #define D Devil
    #define I Idiot
    
    bool question = "Person 1, Is the Idiot immediately left of the Devil?";
    char order[3] = "XXX";
    
    if (question)
    {
    	question = "Person 2, are you the Idiot?";
    	if (question)
    	{
    		question = "Person 2, is Person 3 God?";
    		if (question)
    		{
    			order = "GDI";
    		} else {
    			order = "IDG";
    		}
    	} else {
    
    		question = "Person 2, Is Person 3 the Devil?";
    		if (question)
    		{
    			order = "IGD";
    		} else {
    			order = "DGI";
    		}
    	}
    			
    } else {
     
    	question = "Person 3, Are you the Idiot?";
    	if (question)
    	{
    		question = "Person 3, Is Person 2 God?";
    		if (question)
    		{
    			order = "GID";
    		} else {
    			order = "IGD";
    		}
    	} else {
    
    		question = "Person 3, Is Person 2 the Devil?";
    		if (question)
    		{
    			order = "IDG";
    		} else {
    			order = "DIG";
    		}
    	}
    }

  13. #118
    Registered User Commander's Avatar
    Join Date
    Sep 2001
    Posts
    801
    I don't know if i'm answering the wrong question or not, but for the glass question posted Zewu, i got this,

    increase the the height by 0.6

    or

    increase the diameter by [{sqrt(396) / sqrt(10)} - 6]

    again i don't even know if i'm answering the right question...
    oh i'm sorry! i didn;t realize my fist was rushing to meet ur face!

    MSN :: [email protected] []*[]

  14. #119
    Registered User Jet_Master's Avatar
    Join Date
    May 2002
    Posts
    291
    The diameter at the top of the glass is 6cm, the height of the "cone" is 8cm. The ones who manufacture the glass wants it to fill 10% more liquid. How do you measure the glass to accomplish this?
    so the manufaturer wants the new volume of the glass to be 10% of the glass more than the current volume of the glass?
    so, if the current volume of the glass is x,
    the manufacturer wants the new volume to be:
    x + 10%(x)

    is that correct? i need to know that in order to answer the question.
    I am the Alpha and the Omega!!!

  15. #120
    Registered User Jet_Master's Avatar
    Join Date
    May 2002
    Posts
    291
    if the info above that i got was right,

    i think i got a different answer than commander.
    i got that the height should be increased by 0.8, not 0.6
    I am the Alpha and the Omega!!!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Someone having same problem with Code Block?
    By ofayto in forum C++ Programming
    Replies: 1
    Last Post: 07-12-2007, 08:38 AM
  2. A question related to strcmp
    By meili100 in forum C++ Programming
    Replies: 6
    Last Post: 07-07-2007, 02:51 PM
  3. WS_POPUP, continuation of old problem
    By blurrymadness in forum Windows Programming
    Replies: 1
    Last Post: 04-20-2007, 06:54 PM
  4. Laptop Problem
    By Boomba in forum Tech Board
    Replies: 1
    Last Post: 03-07-2006, 06:24 PM
  5. Maths problem
    By Zewu in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 11-13-2002, 02:34 PM