Hilarious!!!
Hilarious!!!

Washington Mutual, with $307 billion in assets, is by far the biggest bank failure in history, eclipsing the 1984 failure of Continental Illinois National Bank and Trust in Chicago, an event that presaged the savings and loan crisis. IndyMac, which was seized by regulators in July, was one-tenth the size of WaMu.
The government has dealt with troubled financial institutions differently. Lehman Brothers and Washington Mutual, which were less entangled with the rest of the financial system, were allowed to collapse. But the government took emergency measures to stabilize Goldman Sachs, Morgan Stanley and the American International Group, the insurance giant.
This post is a brief introduction to Network Models, which is a part of what we learn in Decision Support Systems, at the University of Central Florida. We covered Minimal Spanning, Maximum Flow and Shortest Route. Enjoy!
A minimal spanning tree problem is typified by a collection of nodes and branches wherein nodes represent locations in geographical space. Initially these nodes are totally disconnected. The branches represent potential connections between pairs of nodes. The objective in this problem is to select a set of branches that will connect all the nodes (every node is reachable from every other node, either directly or indirectly) with as small a total length of connections as possible. This set of connections is referred to as the spanning tree.
An efficient methodology when data are presented in network format is as follows:
A shortest route problem is typified by a collection of nodes and branches wherein nodes represent locations in geographical space and branches represent the travel distance (or perhaps travel time, or travel cost) between nodes. A shortest route problem will have a designated starting node and a designated destination node.
To find the shortest route from the starting node to the destination node, begin by establishing a node labeling system. The first term of the label represents the distance from the starting node to the node in question and the second term of the label represents the prior node traversed in getting to the node in question. Labels will be designated as either temporary labels or permanent labels. Temporary labels are subject to change if the distance can be improved; permanent labels are not subject to change. An efficient methodology is as follows:
A maximal flow problem is typified by a collection of nodes and branches wherein nodes represent locations in geographical space and branches represent connections between those locations. A maximal flow problem will have a designated starting node (often referred to as a source node) and a designated destination node (often referred to as a sink node). This type of problem will have movement, or flow, of some commodity through the system from the source node to the sink node. The objective is to determine the maximum amount of traffic that can flow from the source to the sink in a specified period of time. Since flow capacity along a branch will depend upon the direction of flow, each branch in the network displays the flow capacity with two numbers (each represents capacity for flow out of the adjacent node).
An efficient methodology for the maximal flow problem is as follows: