public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] program to solve assignment problem?
@ 2009-11-02 20:49 Erik
  2009-11-02 22:48 ` Marcus Wanner
                   ` (4 more replies)
  0 siblings, 5 replies; 20+ messages in thread
From: Erik @ 2009-11-02 20:49 UTC (permalink / raw
  To: gentoo-user

Is there some simple little program to solve assignment problems?
Suppose that someone bought k meat (160), m fish (30) and n milk (15)
for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
700. (A solution happens to be k = 4, m = 2, n = 0. An additional
condition could be that he bought at most 6 items; k + m + n <= 6. That
would eliminate solutions like k = 4, m = 0, n = 4.)



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
@ 2009-11-02 22:48 ` Marcus Wanner
  2009-11-02 22:59   ` Michael Sullivan
  2009-11-02 23:21 ` Neil Bothwick
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 20+ messages in thread
From: Marcus Wanner @ 2009-11-02 22:48 UTC (permalink / raw
  To: gentoo-user

On 11/2/2009 3:49 PM, Erik wrote:
> Is there some simple little program to solve assignment problems?
> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> condition could be that he bought at most 6 items; k + m + n <= 6. That
> would eliminate solutions like k = 4, m = 0, n = 4.)
>   
What?



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 22:48 ` Marcus Wanner
@ 2009-11-02 22:59   ` Michael Sullivan
  2009-11-03  2:48     ` Marcus Wanner
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Sullivan @ 2009-11-02 22:59 UTC (permalink / raw
  To: gentoo-user

On Mon, 2009-11-02 at 17:48 -0500, Marcus Wanner wrote:
> On 11/2/2009 3:49 PM, Erik wrote:
> > Is there some simple little program to solve assignment problems?
> > Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> > for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> > 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> > condition could be that he bought at most 6 items; k + m + n <= 6. That
> > would eliminate solutions like k = 4, m = 0, n = 4.)
> >   
> What?
> 

Can't one do this kind of thing in python?




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
  2009-11-02 22:48 ` Marcus Wanner
@ 2009-11-02 23:21 ` Neil Bothwick
  2009-11-02 23:26 ` Albert Hopkins
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 20+ messages in thread
From: Neil Bothwick @ 2009-11-02 23:21 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 629 bytes --]

On Mon, 02 Nov 2009 21:49:06 +0100, Erik wrote:

> Is there some simple little program to solve assignment problems?
> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> condition could be that he bought at most 6 items; k + m + n <= 6. That
> would eliminate solutions like k = 4, m = 0, n = 4.)

Have you tried apps-edu/domyhomeworkforme?


-- 
Neil Bothwick

Life is pleasant. Death is peaceful. Its the transition thats
troublesome. - Isaac Asimov

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
  2009-11-02 22:48 ` Marcus Wanner
  2009-11-02 23:21 ` Neil Bothwick
@ 2009-11-02 23:26 ` Albert Hopkins
  2009-11-03  0:46 ` Willie Wong
  2009-11-03 15:22 ` [gentoo-user] " James
  4 siblings, 0 replies; 20+ messages in thread
From: Albert Hopkins @ 2009-11-02 23:26 UTC (permalink / raw
  To: gentoo-user

On Mon, 2009-11-02 at 21:49 +0100, Erik wrote:
> Is there some simple little program to solve assignment problems?
> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> condition could be that he bought at most 6 items; k + m + n <= 6.
> That
> would eliminate solutions like k = 4, m = 0, n = 4.)
> 

You mean you want a program to do your homework assignment?

-a




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
                   ` (2 preceding siblings ...)
  2009-11-02 23:26 ` Albert Hopkins
@ 2009-11-03  0:46 ` Willie Wong
  2009-11-03  1:27   ` Dale
  2009-11-03 15:22 ` [gentoo-user] " James
  4 siblings, 1 reply; 20+ messages in thread
From: Willie Wong @ 2009-11-03  0:46 UTC (permalink / raw
  To: gentoo-user

On Mon, Nov 02, 2009 at 09:49:06PM +0100, Penguin Lover Erik squawked:
> Is there some simple little program to solve assignment problems?
> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> condition could be that he bought at most 6 items; k + m + n <= 6. That
> would eliminate solutions like k = 4, m = 0, n = 4.)

An odd question deserves an odd answer: try Metafont. Donald Knuth
implemented in it a general linear equation solver / inequality
optimizer, though learning the syntax can be a little bit tricky. 

W

-- 
Do you think paper grow on trees?
         ~Sarah Grant. To Tal Zamir, after Prof Cutts commented on Tal's
	  requesting the third copy of one handout...
Sortir en Pantoufles: up 1060 days, 23:36



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03  0:46 ` Willie Wong
@ 2009-11-03  1:27   ` Dale
  2009-11-03  2:02     ` Neil Bothwick
  0 siblings, 1 reply; 20+ messages in thread
From: Dale @ 2009-11-03  1:27 UTC (permalink / raw
  To: gentoo-user

Willie Wong wrote:
> On Mon, Nov 02, 2009 at 09:49:06PM +0100, Penguin Lover Erik squawked:
>   
>> Is there some simple little program to solve assignment problems?
>> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
>> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
>> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
>> condition could be that he bought at most 6 items; k + m + n <= 6. That
>> would eliminate solutions like k = 4, m = 0, n = 4.)
>>     
>
> An odd question deserves an odd answer: try Metafont. Donald Knuth
> implemented in it a general linear equation solver / inequality
> optimizer, though learning the syntax can be a little bit tricky. 
>
> W
>
>   

And maybe it will be easier to just do his own homework instead of
letting a computer do it for him.

I would like to see how he cheats on test day tho.  Think he can bring
his puter with him?

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03  1:27   ` Dale
@ 2009-11-03  2:02     ` Neil Bothwick
  2009-11-03  5:18       ` Dale
  0 siblings, 1 reply; 20+ messages in thread
From: Neil Bothwick @ 2009-11-03  2:02 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 349 bytes --]

On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:

> And maybe it will be easier to just do his own homework instead of
> letting a computer do it for him.

Maybe the assignment is to write a program to solve the equation.


-- 
Neil Bothwick

What do you have when you have six lawyers buried up to their necks in
sand? Not enough sand.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-02 22:59   ` Michael Sullivan
@ 2009-11-03  2:48     ` Marcus Wanner
  0 siblings, 0 replies; 20+ messages in thread
From: Marcus Wanner @ 2009-11-03  2:48 UTC (permalink / raw
  To: gentoo-user

On 11/2/2009 5:59 PM, Michael Sullivan wrote:
> On Mon, 2009-11-02 at 17:48 -0500, Marcus Wanner wrote:
>   
>> On 11/2/2009 3:49 PM, Erik wrote:
>>     
>>> Is there some simple little program to solve assignment problems?
>>> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
>>> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
>>> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
>>> condition could be that he bought at most 6 items; k + m + n <= 6. That
>>> would eliminate solutions like k = 4, m = 0, n = 4.)
>>>   
>>>       
>> What?
>>
>>     
>
> Can't one do this kind of thing in python?
>   
That is what I would do, if I couldn't do it on paper...

But seriously, this does not belong on this list.

Marcus



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03  2:02     ` Neil Bothwick
@ 2009-11-03  5:18       ` Dale
  2009-11-03 13:08         ` bn
  0 siblings, 1 reply; 20+ messages in thread
From: Dale @ 2009-11-03  5:18 UTC (permalink / raw
  To: gentoo-user

Neil Bothwick wrote:
> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
>
>   
>> And maybe it will be easier to just do his own homework instead of
>> letting a computer do it for him.
>>     
>
> Maybe the assignment is to write a program to solve the equation.
>
>
>   

That's a idea too.  Didn't think of that.

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 13:08         ` bn
@ 2009-11-03 13:06           ` Etaoin Shrdlu
  2009-11-03 13:13             ` Alan McKinnon
  0 siblings, 1 reply; 20+ messages in thread
From: Etaoin Shrdlu @ 2009-11-03 13:06 UTC (permalink / raw
  To: gentoo-user

On Tuesday 03 Nov 2009, bn wrote:

> Dale ha scritto:
> > Neil Bothwick wrote:
> >> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
> >>> And maybe it will be easier to just do his own homework instead of
> >>> letting a computer do it for him.
> >>
> >> Maybe the assignment is to write a program to solve the equation.
> >
> > That's a idea too.  Didn't think of that.
> 
> In this case I suggest the following programming languages:
> - Brainfuck http://en.wikipedia.org/wiki/Brainfuck
> - OISC http://en.wikipedia.org/wiki/OISC
> - Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
> - Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
> - Befunge http://en.wikipedia.org/wiki/Befunge
> - Intercal http://en.wikipedia.org/wiki/Intercal
> - Malbolge http://en.wikipedia.org/wiki/Malbolge

You forgot http://compsoc.dur.ac.uk/whitespace/ 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03  5:18       ` Dale
@ 2009-11-03 13:08         ` bn
  2009-11-03 13:06           ` Etaoin Shrdlu
  0 siblings, 1 reply; 20+ messages in thread
From: bn @ 2009-11-03 13:08 UTC (permalink / raw
  To: gentoo-user

Dale ha scritto:
> Neil Bothwick wrote:
>> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
>>
>>   
>>> And maybe it will be easier to just do his own homework instead of
>>> letting a computer do it for him.
>>>     
>> Maybe the assignment is to write a program to solve the equation.
>>
>>
>>   
> 
> That's a idea too.  Didn't think of that.

In this case I suggest the following programming languages:
- Brainfuck http://en.wikipedia.org/wiki/Brainfuck
- OISC http://en.wikipedia.org/wiki/OISC
- Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
- Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
- Befunge http://en.wikipedia.org/wiki/Befunge
- Intercal http://en.wikipedia.org/wiki/Intercal
- Malbolge http://en.wikipedia.org/wiki/Malbolge




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 13:06           ` Etaoin Shrdlu
@ 2009-11-03 13:13             ` Alan McKinnon
  2009-11-03 14:24               ` Dale
  0 siblings, 1 reply; 20+ messages in thread
From: Alan McKinnon @ 2009-11-03 13:13 UTC (permalink / raw
  To: gentoo-user; +Cc: Etaoin Shrdlu

On Tuesday 03 November 2009 15:06:43 Etaoin Shrdlu wrote:
> On Tuesday 03 Nov 2009, bn wrote:
> > Dale ha scritto:
> > > Neil Bothwick wrote:
> > >> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
> > >>> And maybe it will be easier to just do his own homework instead of
> > >>> letting a computer do it for him.
> > >>
> > >> Maybe the assignment is to write a program to solve the equation.
> > >
> > > That's a idea too.  Didn't think of that.
> >
> > In this case I suggest the following programming languages:
> > - Brainfuck http://en.wikipedia.org/wiki/Brainfuck
> > - OISC http://en.wikipedia.org/wiki/OISC
> > - Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
> > - Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
> > - Befunge http://en.wikipedia.org/wiki/Befunge
> > - Intercal http://en.wikipedia.org/wiki/Intercal
> > - Malbolge http://en.wikipedia.org/wiki/Malbolge
> 
> You forgot http://compsoc.dur.ac.uk/whitespace/

And COBOL too. 

COBOL - the original obfuscated language. Very cleverly designed to outwardly 
appear to not be obfuscated at all, but just beneath that veneer lies a 
different world entirely.

-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 13:13             ` Alan McKinnon
@ 2009-11-03 14:24               ` Dale
  2009-11-03 14:42                 ` Erik
  0 siblings, 1 reply; 20+ messages in thread
From: Dale @ 2009-11-03 14:24 UTC (permalink / raw
  To: gentoo-user

Alan McKinnon wrote:
> On Tuesday 03 November 2009 15:06:43 Etaoin Shrdlu wrote:
>   
>> On Tuesday 03 Nov 2009, bn wrote:
>>     
>>> Dale ha scritto:
>>>       
>>>> Neil Bothwick wrote:
>>>>         
>>>>> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
>>>>>           
>>>>>> And maybe it will be easier to just do his own homework instead of
>>>>>> letting a computer do it for him.
>>>>>>             
>>>>> Maybe the assignment is to write a program to solve the equation.
>>>>>           
>>>> That's a idea too.  Didn't think of that.
>>>>         
>>> In this case I suggest the following programming languages:
>>> - Brainfuck http://en.wikipedia.org/wiki/Brainfuck
>>> - OISC http://en.wikipedia.org/wiki/OISC
>>> - Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
>>> - Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
>>> - Befunge http://en.wikipedia.org/wiki/Befunge
>>> - Intercal http://en.wikipedia.org/wiki/Intercal
>>> - Malbolge http://en.wikipedia.org/wiki/Malbolge
>>>       
>> You forgot http://compsoc.dur.ac.uk/whitespace/
>>     
>
> And COBOL too. 
>
> COBOL - the original obfuscated language. Very cleverly designed to outwardly 
> appear to not be obfuscated at all, but just beneath that veneer lies a 
> different world entirely.
>
>   

Is this that once a month thread where we get to have a little fun?

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 14:24               ` Dale
@ 2009-11-03 14:42                 ` Erik
  2009-11-03 15:41                   ` Alan McKinnon
  0 siblings, 1 reply; 20+ messages in thread
From: Erik @ 2009-11-03 14:42 UTC (permalink / raw
  To: gentoo-user

Dale skrev:
> Alan McKinnon wrote:
>   
>> On Tuesday 03 November 2009 15:06:43 Etaoin Shrdlu wrote:
>>   
>>     
>>> On Tuesday 03 Nov 2009, bn wrote:
>>>     
>>>       
>>>> Dale ha scritto:
>>>>       
>>>>         
>>>>> Neil Bothwick wrote:
>>>>>         
>>>>>           
>>>>>> On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
>>>>>>           
>>>>>>             
>>>>>>> And maybe it will be easier to just do his own homework instead of
>>>>>>> letting a computer do it for him.
>>>>>>>             
>>>>>>>               
>>>>>> Maybe the assignment is to write a program to solve the equation.
>>>>>>           
>>>>>>             
>>>>> That's a idea too.  Didn't think of that.
>>>>>         
>>>>>           
>>>> In this case I suggest the following programming languages:
>>>> - Brainfuck http://en.wikipedia.org/wiki/Brainfuck
>>>> - OISC http://en.wikipedia.org/wiki/OISC
>>>> - Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
>>>> - Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
>>>> - Befunge http://en.wikipedia.org/wiki/Befunge
>>>> - Intercal http://en.wikipedia.org/wiki/Intercal
>>>> - Malbolge http://en.wikipedia.org/wiki/Malbolge
>>>>       
>>>>         
>>> You forgot http://compsoc.dur.ac.uk/whitespace/
>>>     
>>>       
>> And COBOL too. 
>>
>> COBOL - the original obfuscated language. Very cleverly designed to outwardly 
>> appear to not be obfuscated at all, but just beneath that veneer lies a 
>> different world entirely.
>>
>>   
>>     
>
> Is this that once a month thread where we get to have a little fun?


Fine. I think that I found a relevant package: sci-mathematics/glpk-4.35

It even has an example called "assignment problem". If the package is
installed with the USE-flag "examples", the example will be installed to
[/usr/share/doc/glpk-4.35/examples/assign.mod]. I will look into that.
Looks infinitely more useful than most suggestions that I got so far.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* [gentoo-user]  Re: program to solve assignment problem?
  2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
                   ` (3 preceding siblings ...)
  2009-11-03  0:46 ` Willie Wong
@ 2009-11-03 15:22 ` James
  4 siblings, 0 replies; 20+ messages in thread
From: James @ 2009-11-03 15:22 UTC (permalink / raw
  To: gentoo-user

Erik <esigra <at> gmail.com> writes:


> Is there some simple little program to solve assignment problems?
> Suppose that someone bought k meat (160), m fish (30) and n milk (15)
> for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
> 700. (A solution happens to be k = 4, m = 2, n = 0. An additional
> condition could be that he bought at most 6 items; k + m + n <= 6. That
> would eliminate solutions like k = 4, m = 0, n = 4.)

First of all, if you post something to the list like this, 
put OT for off topic. Second of all, if you make *ANY* attempt
to solve this on your own, you *might* get some programming 
tips, depending on which language you use. Personally, I'd just 
use C.


Most important of all, the solution is trivial. Look at your last
stated 'boundary condition', and get your head out of programming
and think logically........




goodluck,
James












^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 14:42                 ` Erik
@ 2009-11-03 15:41                   ` Alan McKinnon
  2009-11-03 16:03                     ` Erik
  2009-11-03 17:11                     ` Stroller
  0 siblings, 2 replies; 20+ messages in thread
From: Alan McKinnon @ 2009-11-03 15:41 UTC (permalink / raw
  To: gentoo-user

On Tuesday 03 November 2009 16:42:14 Erik wrote:
> Fine. I think that I found a relevant package: sci-mathematics/glpk-4.35
> 
> It even has an example called "assignment problem". If the package is
> installed with the USE-flag "examples", the example will be installed to
> [/usr/share/doc/glpk-4.35/examples/assign.mod]. I will look into that.
> Looks infinitely more useful than most suggestions that I got so far.

That's because you worded your question like a dumbass user asking someone 
else to do their homework for him. That's exactly what it looked like so 
that's exactly the answers you got.

Now, if you want people to be more helpful, there's some stuff you have to do:

1. Realise that no-one else can see inside your head
2. Realise that none of us are telepathic
3. None of us are mind readers
4. We don't know what you mean, we only know what you wrote
5. Make it possible for people to help you by clearly stating what it is that 
you need help on in an unambiguous manner that can be clearly understood. 
Something like this:

========= start example ===========
Hi,

I need to solve a bunch of maths equations. Here's an example:

[stuff about k, m, n and boundary conditions]

I don't need an answer (I already know that using pen and paper), I need to 
demonstrate the path to a solution, and there's lots more such equations to 
solve. I had a look in sci-mathematics but nothing there has a likely looking 
name,a nd the download size leads me to believe most of them are overkill for 
this.

Anyone have experience with this kind of thing and can recommend an entry-
level app that gets the job done easily?
============== end example ===================

Now, a mail like that would have gotten you lots of recommendations, would 
have sparked a fascinating debate on how to solve it programatically, probably 
produce 9 solutions in 4 languages in the first 6 hours and also include a 
detailed treatise on why portage might be able to do it but revdep-rebuild 
cannot (by design).

See where I'm going with this?

-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 15:41                   ` Alan McKinnon
@ 2009-11-03 16:03                     ` Erik
  2009-11-03 16:28                       ` bn
  2009-11-03 17:11                     ` Stroller
  1 sibling, 1 reply; 20+ messages in thread
From: Erik @ 2009-11-03 16:03 UTC (permalink / raw
  To: gentoo-user

Alan McKinnon skrev:
> That's because you worded your question like a dumbass user asking someone 
> else to do their homework for him.

I did not mention anything related to homework or that I would still be
a student or anything like that. It was just a standard question of
knowing which Gentoo package is best suited for a particular task.
(Maybe the problem is offtopic until the user got so far that he knows
which package he should be using.)

Maybe next month I will ask which program I should use to solve the
stable marriage problem so you can have your fun again.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 16:03                     ` Erik
@ 2009-11-03 16:28                       ` bn
  0 siblings, 0 replies; 20+ messages in thread
From: bn @ 2009-11-03 16:28 UTC (permalink / raw
  To: gentoo-user

Erik ha scritto:
> Alan McKinnon skrev:
>> That's because you worded your question like a dumbass user asking someone 
>> else to do their homework for him.
> 
> I did not mention anything related to homework or that I would still be
> a student or anything like that. It was just a standard question of
> knowing which Gentoo package is best suited for a particular task.

You did not mention, but all it seemed is that you were asking "how do I
solve this equation".
Alan was maybe not very polite, but he explained you well why it hasn't
been taken seriously.

m.




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [gentoo-user] program to solve assignment problem?
  2009-11-03 15:41                   ` Alan McKinnon
  2009-11-03 16:03                     ` Erik
@ 2009-11-03 17:11                     ` Stroller
  1 sibling, 0 replies; 20+ messages in thread
From: Stroller @ 2009-11-03 17:11 UTC (permalink / raw
  To: gentoo-user


On 3 Nov 2009, at 15:41, Alan McKinnon wrote:

> On Tuesday 03 November 2009 16:42:14 Erik wrote:
>> Fine. I think that I found a relevant package: sci-mathematics/ 
>> glpk-4.35
>>
>> It even has an example called "assignment problem". If the package is
>> installed with the USE-flag "examples", the example will be  
>> installed to
>> [/usr/share/doc/glpk-4.35/examples/assign.mod]. I will look into  
>> that.
>> Looks infinitely more useful than most suggestions that I got so far.
>
> That's because you worded your question like a dumbass user asking  
> someone
> else to do their homework for him. That's exactly what it looked  
> like so
> that's exactly the answers you got.

I'm a little surprised anyone read it this way. This is the kind of  
maths problem set for 12 year olds.

Upon reading the OP I assumed him to be a parent wanting to check his  
kid's homework, or a maths teacher wanting to set such problems.

Stroller.



^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2009-11-03 17:11 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-02 20:49 [gentoo-user] program to solve assignment problem? Erik
2009-11-02 22:48 ` Marcus Wanner
2009-11-02 22:59   ` Michael Sullivan
2009-11-03  2:48     ` Marcus Wanner
2009-11-02 23:21 ` Neil Bothwick
2009-11-02 23:26 ` Albert Hopkins
2009-11-03  0:46 ` Willie Wong
2009-11-03  1:27   ` Dale
2009-11-03  2:02     ` Neil Bothwick
2009-11-03  5:18       ` Dale
2009-11-03 13:08         ` bn
2009-11-03 13:06           ` Etaoin Shrdlu
2009-11-03 13:13             ` Alan McKinnon
2009-11-03 14:24               ` Dale
2009-11-03 14:42                 ` Erik
2009-11-03 15:41                   ` Alan McKinnon
2009-11-03 16:03                     ` Erik
2009-11-03 16:28                       ` bn
2009-11-03 17:11                     ` Stroller
2009-11-03 15:22 ` [gentoo-user] " James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox