Fedora Linux Support Community & Resources Center
  #16  
Old 18th May 2008, 07:42 PM
majikthise's Avatar
majikthise Offline
Registered User
 
Join Date: Apr 2008
Location: everywhere & nowhere
Posts: 749
Nah, really. Don't you think the site's name gives that away. it's a file sharing site Warez are usually protected by passworded subscribers. But yes it's illegal. duh. (I didn't put the material up there)
__________________
HP dv5000 1.8GHz F9......Apple G4 500MHz F8 (dev-box)......ASRock 2x 1.8GHz CentOS 5.2

Last edited by Dan; 18th May 2008 at 07:49 PM.
Reply With Quote
  #17  
Old 18th May 2008, 07:47 PM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
Links to such are not allowed. The links will remain removed.


Dan
__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
  #18  
Old 19th May 2008, 04:51 AM
majikthise's Avatar
majikthise Offline
Registered User
 
Join Date: Apr 2008
Location: everywhere & nowhere
Posts: 749
OK Dan that was kinda stoopid to do. Won't happen again.
__________________
HP dv5000 1.8GHz F9......Apple G4 500MHz F8 (dev-box)......ASRock 2x 1.8GHz CentOS 5.2
Reply With Quote
  #19  
Old 19th May 2008, 04:59 AM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
Good!

Cuz I'd hate to hafta get nasty about it! <....>

<....>


Dan
__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
  #20  
Old 19th May 2008, 05:28 AM
majikthise's Avatar
majikthise Offline
Registered User
 
Join Date: Apr 2008
Location: everywhere & nowhere
Posts: 749
Quote:
Originally Posted by RupertPupkin
Not cool, dude.
Don't call me dude. Dude.
http://www.cropart.com/elizabethschr...1ESWhitman.htm

http://media3.7digital.com/clips/656/173963.clip.mp3

All legal.
__________________
HP dv5000 1.8GHz F9......Apple G4 500MHz F8 (dev-box)......ASRock 2x 1.8GHz CentOS 5.2
Reply With Quote
  #21  
Old 19th May 2008, 05:36 AM
Dan's Avatar
Dan Offline
Administrator
 
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,309
Sheesh! If you're gonna post audio links ... Click this! <....>
__________________
Signature Links | New Posts | Who's on the forums (right now) |

© ® ™ № ¿
Reply With Quote
  #22  
Old 19th May 2008, 04:03 PM
binutils Offline
Registered User
 
Join Date: Jul 2007
Posts: 57
http://csapp.cs.cmu.edu/

http://users.powernet.co.uk/eton/unleashed/

http://www.cs.princeton.edu/~rs/

http://www.boost.org/
Reply With Quote
  #23  
Old 19th June 2009, 05:10 AM
mtl2002 Offline
Registered User
 
Join Date: Jun 2005
Posts: 263
Quote:
Originally Posted by RupertPupkin View Post
Another famous book on theoretical computer science, with a much more mathematical approach than the others, is Computability, Complexity, and Languages by Davis and Weyuker. There's an exercise in that book that I still haven't been able to figure out after many years. Namely, prove that there is no string x in {a,b}* such that ax = xb, without using mathematical induction. The induction proof is easy (and is given in the book), but the noninduction proof is supposedly a "one-liner".
How about, "because ax has one more a than xb," or, "xb has one more b than ax"?
Reply With Quote
  #24  
Old 19th June 2009, 06:07 AM
RupertPupkin's Avatar
RupertPupkin Offline
Registered User
 
Join Date: Nov 2006
Location: Detroit
Posts: 4,616
Quote:
Originally Posted by mtl2002 View Post
How about, "because ax has one more a than xb," or, "xb has one more b than ax"?
Hmm, I think you've got it, because it doesn't implicitly use an induction argument. That has to be the proof Davis and Weyuker had in mind. Good job! Finally, after all these years...I can't believe I never thought of that.
Reply With Quote
  #25  
Old 22nd June 2009, 05:08 PM
creeping death's Avatar
creeping death Offline
Registered User
 
Join Date: Feb 2008
Posts: 655
lol...nothing much to say...most people have given excellent guidance...just one addition though...

it would help if you have a strong foundation in discrete maths...its one of the cornerstones of computer science and it would help improve your perception of things...IMO...

some nice books , on this subject IMO are ...
1. Discrete Mathematical Structures

2.Discrete Combinatorial Mathematics - An Applied Introduction
__________________
c_d -- superfluously plenteous yet indolently otiose

Last edited by creeping death; 22nd June 2009 at 05:12 PM.
Reply With Quote
  #26  
Old 23rd June 2009, 12:10 PM
David Becker Offline
Registered User
 
Join Date: Feb 2006
Posts: 780
Quote:
Originally Posted by RupertPupkin View Post
Hmm, I think you've got it, because it doesn't implicitly use an induction argument. That has to be the proof Davis and Weyuker had in mind. Good job! Finally, after all these years...I can't believe I never thought of that.
What's the induction proof? I came up with this (prior to seeing mtl2002's elegant one-liner):

ax = xb ( x := {a,b}* ) (0)

If x = <empty> then we get a = b which is a contradiction.

For non-empty x:

In order for ax = xb to hold, xb must start with an 'a', so x must start with an 'a'.
In order for ax = xb to hold, ax must end on a 'b', so x must end on a 'b'.
So x starts with an 'a' and ends on a 'b'. So x must have 2 different characters. (Corollary 0)

Given ax, xb and x, for the character in the i'th position ( i > 1 & i < |ax| ),
the following must hold:

ax[i] = xb[i] (1)

ax[i] = x[i-1] (2)
xb[i] = x[i] (3)

leading to:

x[i-1] = x[i] (4)

So for any x to satisfy (4), x must be empty or all the characters in x must be
the same, which contradicts Corollary 0. So there is no x for which (0) can be
satisfied.

mtl2002's 'proof' remains the most elegant.

David
Reply With Quote
  #27  
Old 23rd June 2009, 07:05 PM
RupertPupkin's Avatar
RupertPupkin Offline
Registered User
 
Join Date: Nov 2006
Location: Detroit
Posts: 4,616
Quote:
Originally Posted by David Becker View Post
What's the induction proof? I came up with this (prior to seeing mtl2002's elegant one-liner)
You're implicitly doing induction on the length of x, and your proof is basically a slightly differently-worded version of the induction proof in the Davis & Weyuker book. That's probably the "normal" way people would go about proving it. I agree that the ~ one-liner that mtl2002 gave is much better.
Reply With Quote
  #28  
Old 25th June 2009, 07:57 PM
dmyersturnbull Offline
Registered User
 
Join Date: Sep 2008
Location: California
Posts: 235
I read an excellent book on complexity theory:

Complexity Theory: Exploring the Limits of Efficient Algorithms
Ingo Wegener (Author) and R. Pruim (Translator)
ISBN-13: 978-3540210450

On the software engineering side, there's also Design Patterns: Elements of Re-Usable Object-Oriented Software

If you're interested in in-depth analysis of language syntax-es, look into programming language theory. I haven't read any books about it
Reply With Quote
Reply

Tags
book, theory

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
VPN theory: where to set-up Mat Servers & Networking 3 7th September 2007 05:06 PM
WEP Cracking Theory Slider Servers & Networking 2 26th July 2005 01:03 PM
md5sum theory tejas Using Fedora 10 12th June 2005 01:29 PM
DNS Setup & Theory pzeigler Servers & Networking 0 9th May 2005 04:34 AM
My theory on upgrading; what's yours? Psquared Fedora Focus 17 27th October 2004 03:00 AM


Current GMT-time: 00:14 (Wednesday, 22-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat