<?php
$page_name = "Safety Factor Vs. Redundancy";
$menu_type = "outdoors";
$menu_name = "Redundancy Part 2";
$blog_num = 18;
$page_rate = 7;
$page_tags = array("erudition");
$page_date = "August 25, 2011";
include_once("./files/head.php");

echo "<p>While researching redundancy, I stumbled across this gem: <a href=\"http://www.umowlai.com.au/uploads/Cliffhanger.pdf\">Factor of Safety Versus Redundancy - The Cliff-Hanger Question</a>.  I suggest you read it yourself and ignore my summary.  This guy is good, you can actually understand him.  But if not, read on.</p>\n";

echo "<p>The premise is really simple; \"Imagine you were hanging off a cliff.  Is it safer to be attached to 2 ropes or a single rope that is twice as strong?\"</p>\n";

echo "<div class=\"leftpic\"><img src=\"./images/climbing/sf_vs_red_1.gif\" width=300 height=153 /></div>\n";
echo "<p>Basically there are 4 scenarios:</p>\n";

echo "<ul>\n";
  echo "<li><strong>Case 1:</strong> Normal boring single rope.</li>\n";
  echo "<li><strong>Case 2:</strong> Double strength single rope.</li>\n";
  echo "<li><strong>Case 3:</strong> Normal strength double ropes, all weight on 1 rope at a time (ie. rope A breaks and B catches instantly).</li>\n";
  echo "<li><strong>Case 4:</strong> Normal strength double ropes, both ropes take 1/2 load.</li>\n";
echo "</ul>\n";

echo "<h3>Variables and Answers</h3>\n";
echo "<p>Now then, here are the variables (not that you really need them):</p>\n";
echo "<ul>\n";
  echo "<li><strong>&#955;</strong> - Lambda.  Factor of safety (capacity / load)</li>\n";
  echo "<li><strong>P(x)</strong> - Probability of 'x' failing.  Ie. P(1) is probability of case 1 failing.</li>\n";
  echo "<li><strong>N</strong> - Minimum number of units needed for success. Ie. You need 1 rope, so N=1.</li>\n";
  echo "<li><strong>K</strong> - Number of back-ups.</li>\n";
echo "</ul>\n";

echo "<p>So. Math aside, here are the answers.</p>\n";

echo "<center>\n";
echo "<table>\n";
  echo "<tr>\n";
	echo "<th>Case</th>\n";
    echo "<th>&#955;</th>\n";
    echo "<th>Redundancy<br />(N + K)</th>\n";
    echo "<th>P(x)</th>\n";
    echo "<th>Comment</th>\n";
  echo "</tr>\n";
  echo "<tr>\n";
	echo "<td>1</td>\n";
    echo "<td>1.5</td>\n";
	echo "<td>N + 0</td>\n";
    echo "<td>0.0828</td>\n";
    echo "<td>Base Case</td>\n";
  echo "</tr>\n";
  echo "<tr>\n";
	echo "<td>2</td>\n";
    echo "<td>3.0</td>\n";
	echo "<td>N + 0</td>\n";
    echo "<td>0.000783</td>\n";
    echo "<td>Increase &#955; only</td>\n";
  echo "</tr>\n";
  echo "<tr>\n";
	echo "<td>3</td>\n";
    echo "<td>1.5</td>\n";
	echo "<td>N + 1</td>\n";
    echo "<td>0.00685</td>\n";
    echo "<td>Increase redundancy only</td>\n";
  echo "</tr>\n";
  echo "<tr>\n";
	echo "<td>4</td>\n";
    echo "<td>3.0</td>\n";
	echo "<td>N + 1</td>\n";
    echo "<td>0.000 000 613</td>\n";
    echo "<td>Increase &#955; and redundancy</td>\n";
  echo "</tr>\n";
echo "</table>\n";
echo "</center>\n";

echo "<p>Now, some food for thought...Two ropes are better than one double strength rope, but if they are only through a single anchor that gives way, or the rope snaps in the middle, what do you do?</p>\n";

include_once("./files/close.php");
?>