Lost Password?


Go Back   CodeCall Programming Forum > Software Development > General Programming

General Programming Non language specific, Assembly, Linux/Unix, Mac and anything not covered in other topics. Talk about Programming Theory here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #31 (permalink)  
Old 10-04-2008, 09:34 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is online now
Super Moderator
 
Join Date: Jul 2006
Age: 35
Posts: 3,277
Last Blog:
wxWidgets is NOT code ...
Rep Power: 36
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default Re: Homework For LuLz

Effectively, here's what my Venn diagrams are doing:

F = y’z’ + x’yz + x’y + xyz + xz’
F = (xy'z' + x'y'z') + (x'yz) + (x'yz + x'yz') + (xyz) + (xyz' + xy'z') //write each xyz combo explicitly
F = xyz + xyz' + xy'z' + x'yz + x'yz' + x'y'z' //write each value once
F = (xyz + xyz' + xy'z') + (x'yz + x'yz' + x'y'z') + (xyz + xyz' + x'yz + x'yz') + (xy'z' + x'y'z') + (xyz + x'yz) + (xyz' + xy'z' + x'yz' + x'y'z') // write all the items that correspond to x, x', y, y', z, z', duplicating as necessary
F = (xyz + xyz' + xy'z') + (x'yz + x'yz' + x'y'z') + y + (xy'z' + x'y'z') + (xyz + x'yz) + z' // any quads get rewritten as single letters, highlight any items that they covered
F = y + z' // ignore any sets that are covered by the singletons
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Programming is a branch of mathematics.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #32 (permalink)  
Old 10-04-2008, 12:31 PM
morefood2001's Avatar   
morefood2001 morefood2001 is offline
Guru
 
Join Date: Jan 2008
Location: Western New York
Posts: 1,415
Last Blog:
VPS Hosting with Revie...
Rep Power: 16
morefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nice
Send a message via AIM to morefood2001 Send a message via MSN to morefood2001 Send a message via Yahoo to morefood2001 Send a message via Skype™ to morefood2001
Default Re: Homework For LuLz

I used a Karnaugh Map and sort of showed John.

Basically put a 1 where the conditions are met:
y'z' y'z yz yz'
--------------------------------
X' | 1 | 0 | 1 | 1 |
---------------------------------
X | 1 | 0 | 1 | 1 |
---------------------------------

Now Just highlight the biggest areas of 4

y'z' y'z yz yz'
--------------------------------
X' | 1 | 0 | 1 | 1 |
---------------------------------
X | 1 | 0 | 1 | 1 |
---------------------------------
This corresponds to: Z'

y'z' y'z yz yz'
--------------------------------
X' | 1 | 0 | 1 | 1 |
---------------------------------
X | 1 | 0 | 1 | 1 |
---------------------------------
This corresponds to Y

So the Prime Implicants are: Y and Z' answering the question.

The Prime Implicates are: the biggest clusters of 0, so they would be: Y'Z

As questions if you don't understand this method

If you quote this, the numbers line up better for some reason
__________________
Phil Matuskiewicz
My Personal Website My Other Website
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #33 (permalink)  
Old 10-15-2008, 04:06 PM
ClaytonJenkins ClaytonJenkins is offline
Newbie
 
Join Date: Oct 2008
Posts: 2
Rep Power: 0
ClaytonJenkins is on a distinguished road
Default Re: Homework For LuLz

Are you familiar with ajax?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #34 (permalink)  
Old 10-15-2008, 04:44 PM
Jordan's Avatar   
Jordan Jordan is offline
Administrator
 
Join Date: Nov 2005
Location: Hendersonville, NC
Posts: 9,224
Last Blog:
Ext JS or Ext GWT
Rep Power: 20
Jordan is just really niceJordan is just really niceJordan is just really niceJordan is just really nice
Send a message via ICQ to Jordan Send a message via AIM to Jordan Send a message via MSN to Jordan
Default Re: Homework For LuLz

Several of us know how to use AJAX. If you ask your question here: http://forum.codecall.net/ajax/ I'll be happy to help you.
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog
The CodeCall Wiki is now fully integrated with vBulletin users! Check it out and add some new pages!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #35 (permalink)  
Old 10-16-2008, 02:54 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,589
Last Blog:
Web slideshow in JavaS...
Rep Power: 76
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Homework For LuLz

I know what Ajax is... but, erm, I've never done anything with it, nor learnt it. I know you have to instantiate an XmlHTTPRequest object, but that's about it.
__________________


Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Homework help - Algorithm complexity Pillager Programming Theory 3 09-08-2008 05:06 PM
I need help for my homework RoyaLTigeR Java Help 2 05-13-2008 03:39 PM
HomeWork Question - VAL() Lop Visual Basic Programming 2 07-11-2007 09:32 AM
Homework Help John Java Help 12 11-02-2006 05:50 AM


All times are GMT -5. The time now is 01:59 PM.

Contest Stats

WingedPanther ........ 2753.6
Xav ........ 2704
Brandon W ........ 1702.32
John ........ 1207.73
marwex89 ........ 1175.24
morefood2001 ........ 966.05
dcs ........ 655.75
Steve.L ........ 475.59
orjan ........ 418.58
Aereshaa ........ 383.54

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 98%

Ads