new file: Files/flashplayer_32_sa.exe new file: favicon.ico new file: globe.gif new file: imgs/download.png new file: imgs/zuck.jpg new file: index.html new file: other.ico new file: script.js new file: site.webmanifest new file: sitemap.html new file: styles/backround.css new file: styles/border.css new file: styles/fonts/Titillium_Web/OFL.txt new file: styles/fonts/Titillium_Web/TitilliumWeb-Black.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Bold.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-BoldItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-ExtraLight.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-ExtraLightItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Italic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Light.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-LightItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Regular.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-SemiBold.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-SemiBoldItalic.ttf new file: styles/fonts/webfontkit-20221027-163353/generator_config.txt new file: styles/fonts/webfontkit-20221027-163353/specimen_files/grid_12-825-55-15.css new file: styles/fonts/webfontkit-20221027-163353/specimen_files/specimen_stylesheet.css new file: styles/fonts/webfontkit-20221027-163353/stylesheet.css new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-demo.html new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-webfont.woff new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-webfont.woff2 new file: styles/fonts/webfontkit-20221027-165950/generator_config.txt new file: styles/fonts/webfontkit-20221027-165950/specimen_files/grid_12-825-55-15.css new file: styles/fonts/webfontkit-20221027-165950/specimen_files/specimen_stylesheet.css new file: styles/fonts/webfontkit-20221027-165950/stylesheet.css new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-demo.html new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-webfont.woff new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-webfont.woff2 new file: styles/style.css new file: tools/2048/.gitignore new file: tools/2048/.jshintrc new file: tools/2048/CONTRIBUTING.md new file: tools/2048/LICENSE.txt new file: tools/2048/README.md new file: tools/2048/Rakefile new file: tools/2048/favicon.ico new file: tools/2048/index.html new file: tools/2048/js/animframe_polyfill.js new file: tools/2048/js/application.js new file: tools/2048/js/bind_polyfill.js new file: tools/2048/js/classlist_polyfill.js new file: tools/2048/js/game_manager.js new file: tools/2048/js/grid.js new file: tools/2048/js/html_actuator.js new file: tools/2048/js/keyboard_input_manager.js new file: tools/2048/js/local_storage_manager.js new file: tools/2048/js/tile.js new file: tools/2048/meta/apple-touch-icon.png new file: tools/webretro/cores/neocd_libretro.js new file: tools/webretro/cores/neocd_libretro.wasm new file: tools/webretro/cores/nestopia_libretro.js new file: tools/webretro/cores/nestopia_libretro.wasm new file: tools/webretro/cores/o2em_libretro.js new file: tools/webretro/cores/o2em_libretro.wasm new file: tools/webretro/cores/opera_libretro.js new file: tools/webretro/cores/opera_libretro.wasm
363 lines
14 KiB
HTML
363 lines
14 KiB
HTML
<!doctype html>
|
|
<html lang="en"><!-- #BeginTemplate "/Templates/Main.dwt" --><!-- DW6 -->
|
|
|
|
<!-- Mirrored from www.mathsisfun.com/simplifying-fractions.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 29 Oct 2022 00:36:00 GMT -->
|
|
<head>
|
|
<!-- #BeginEditable "doctitle" -->
|
|
<title>Simplifying Fractions</title>
|
|
<script src="video.js" type="text/javascript"></script>
|
|
<script language="JavaScript" type="text/javascript">
|
|
|
|
<!-- Begin
|
|
|
|
function go() {
|
|
|
|
var input1 = eval(document.form1.text1.value);
|
|
var input2 = eval(document.form1.text2.value);
|
|
|
|
hcfval = hcf(input1,input2);
|
|
|
|
// document.form1.answer.value = hcfval;
|
|
document.form1.ans1.value = (input1/hcfval);
|
|
document.form1.ans2.value = (input2/hcfval);
|
|
|
|
ex = "The Greatest Common Factor is " + hcfval + "<br><br>";
|
|
|
|
if (hcfval == 1) {
|
|
ex += "(No reduction possible)";
|
|
} else {
|
|
|
|
ex += "The fraction simplifies like this: ";
|
|
|
|
ex += "<span class=\"frac-large\"><sup>" + input1 + "</sup>/<sub>" + input2 + "</sub></span>";
|
|
ex += " »» ";
|
|
ex += "<span class=\"frac-large\"><sup>" + (input1/hcfval) + "</sup>/<sub>" + (input2/hcfval) + "</sub></span>";
|
|
|
|
}
|
|
var example = document.getElementById("example");
|
|
example.innerHTML = ex;
|
|
|
|
}
|
|
|
|
function hcf1(text1,text2){
|
|
var gcd=1;
|
|
if (text1>text2) {text1=text1+text2; text2=text1-text2; text1=text1-text2;}
|
|
if ((text2==(Math.round(text2/text1))*text1)) {gcd=text1}else {
|
|
for (var i = Math.round(text1/2) ; i > 1; i=i-1) {
|
|
if ((text1==(Math.round(text1/i))*i))
|
|
if ((text2==(Math.round(text2/i))*i)) {gcd=i; i=-1;}
|
|
}
|
|
}
|
|
return gcd;
|
|
}
|
|
|
|
function hcf(text1, text2) {
|
|
text1 = text1 << 0;
|
|
text2 = text2 << 0;
|
|
if (text1 == 0 || text2 == 0) return 0;
|
|
|
|
if (text1 > text2) {
|
|
text1 = text1 + text2;
|
|
text2 = text1 - text2;
|
|
text1 = text1 - text2;
|
|
}
|
|
var remainder = text2 % text1;
|
|
while (remainder != 0) {
|
|
text2 = text1;
|
|
text1 = remainder;
|
|
remainder = text2 % text1;
|
|
}
|
|
return text1;
|
|
}
|
|
|
|
function lcm(t1,t2){
|
|
var cm=1;
|
|
var f=hcf(t1,t2);
|
|
cm=t1*t2/f;
|
|
return cm;
|
|
}
|
|
|
|
|
|
// End -->
|
|
</script>
|
|
<!-- #EndEditable -->
|
|
<meta name="keywords" content="math, maths, mathematics, school, homework, education">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
|
<meta name="HandheldFriendly" content="true">
|
|
<meta http-equiv="pics-label" content='(PICS-1.1 "http://www.classify.org/safesurf/" L gen true for "http://www.mathsisfun.com" r (SS~~000 1))'>
|
|
<link rel="stylesheet" type="text/css" href="style3.css" />
|
|
<script src="main3.js" type="text/javascript"></script>
|
|
</head>
|
|
|
|
<body id="bodybg">
|
|
<div class="bg">
|
|
<div id="stt"></div>
|
|
<div id="hdr"></div>
|
|
<div id="logo"><a href="index.html"><img src="images/style/logo.svg" alt="Math is Fun" /></a></div>
|
|
<div id="gtran"><script type="text/javascript">document.write(getTrans());</script></div>
|
|
<div id="gplus"><script type="text/javascript">document.write(getGPlus());</script></div>
|
|
<div id="adTopOuter" class="centerfull noprint">
|
|
<div id="adTop">
|
|
<script type="text/javascript">document.write(getAdTop());</script>
|
|
</div>
|
|
</div>
|
|
<div id="adHide">
|
|
<div id="showAds1"><a href="javascript:showAds()">Show Ads</a></div>
|
|
<div id="hideAds1"><a href="javascript:hideAds()">Hide Ads</a><br>
|
|
<a href="about-ads.html">About Ads</a></div>
|
|
</div>
|
|
<div id="menuWide" class="menu">
|
|
<script type="text/javascript">document.write(getMenu(0));</script>
|
|
</div>
|
|
<div id="linkto">
|
|
<div id="linktort"><script type="text/javascript">document.write(getLinks());</script></div>
|
|
</div>
|
|
<div id="search" role="search"><script type="text/javascript">document.write(getSearch());</script></div>
|
|
<div id="menuSlim" class="menu">
|
|
<script type="text/javascript">document.write(getMenu(1));</script>
|
|
</div>
|
|
<div id="menuTiny" class="menu">
|
|
<script type="text/javascript">document.write(getMenu(2));</script>
|
|
</div>
|
|
<div id="extra"></div>
|
|
</div>
|
|
<div id="content" role="main"><!-- #BeginEditable "Body" -->
|
|
|
|
<h1 id="title" align="center">Simplifying Fractions</h1>
|
|
<span id="video"></span>
|
|
<script type="text/javascript">initVideo('aNQXhknSwrI');</script>
|
|
|
|
<p> </p>
|
|
<span style="float:right; margin: 0 0 5px 10px;"><img src="numbers/images/cancel.svg" alt="Cancel 2/10 to 1/5" /></span> <p><i>To simplify a fraction, divide the top and bottom by the <b>highest number</b> that<br />
|
|
can divide into both numbers exactly.</i></p>
|
|
<h2>Simplifying Fractions</h2>
|
|
<p>Simplifying (or <i>reducing</i>) fractions means to make the fraction as simple as possible. </p>
|
|
<p>Why say four-eighths (<span class="intbl"><em>4</em><strong>8</strong>
|
|
</span>)
|
|
when we really mean half (<span class="intbl">
|
|
<em>1</em><strong>2</strong></span>) ?</p>
|
|
<table border="0" align="center">
|
|
<tr align="center" class="large">
|
|
<td><span class="intbl"><em>4</em><strong>8</strong></span></td>
|
|
<td>=</td>
|
|
<td><span class="intbl"><em>2</em><strong>4</strong></span></td>
|
|
<td>=</td>
|
|
<td><span class="intbl"><em>1</em><strong>2</strong></span></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td>(Four-Eighths)</td>
|
|
<td> </td>
|
|
<td>(Two-Quarters)</td>
|
|
<td> </td>
|
|
<td>(One-Half)</td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td><img src="images/fractions/pie-4-8.jpg" width="120" height="120" alt="pie 4/8" /></td>
|
|
<td class="large">=</td>
|
|
<td><img src="images/fractions/pie-2-4.jpg" width="120" height="120" alt="pie 2/4" /></td>
|
|
<td class="large">=</td>
|
|
<td><img src="images/fractions/pie-1-2.jpg" width="120" height="120" alt="pie 1/2" /></td>
|
|
</tr>
|
|
</table>
|
|
<p style="float:right; margin: 0 0 5px 10px;"> </p>
|
|
<h2>How do I Simplify a Fraction ?</h2>
|
|
<p>There are two ways to simplify a fraction:</p>
|
|
<h2>Method 1</h2>
|
|
<p>Try to <b>exactly divide</b> (only whole number answers) both the top and bottom of the fraction by 2, 3, 5, 7 ,... etc, until we can't go any further.<br />
|
|
|
|
</p>
|
|
<div class="example">
|
|
<h3>Example: Simplify the fraction <span class="intbl">
|
|
<em>24</em>
|
|
<strong>108</strong>
|
|
</span> :</h3>
|
|
<div class="clear">
|
|
<table align="center" border="0" cellspacing="3" cellpadding="0">
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td>÷ 2</td>
|
|
<td> </td>
|
|
<td>÷ 2</td>
|
|
<td> </td>
|
|
<td>÷ 3</td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="7"><img src="images/style/right-over-arrow.gif" width="75" height="25" alt="right over arrow" /> <img src="images/style/right-over-arrow.gif" width="75" height="25" alt="right over arrow" /> <img src="images/style/right-over-arrow.gif" width="75" height="25" alt="right over arrow" /></td>
|
|
</tr>
|
|
<tr align="center" class="large">
|
|
<td colspan="7"><span class="intbl"><em>24</em><strong>108</strong></span> = <span class="intbl"><em>12</em><strong>54</strong></span> = <span class="intbl"><em>6</em><strong>27</strong></span> = <span class="intbl"><em>2</em><strong>9</strong></span></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="7"><img src="images/style/right-under-arrow.gif" width="75" height="25" alt="right under arrow" /> <img src="images/style/right-under-arrow.gif" width="75" height="25" alt="right under arrow" /> <img src="images/style/right-under-arrow.gif" width="75" height="25" alt="right under arrow" /></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td>÷ 2</td>
|
|
<td> </td>
|
|
<td>÷ 2</td>
|
|
<td> </td>
|
|
<td>÷ 3</td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
<p>That is as far as we can go. The fraction simplifies to <span class="intbl">
|
|
<em>2</em>
|
|
<strong>9</strong>
|
|
</span></p>
|
|
</div>
|
|
</div>
|
|
<div class="example">
|
|
<h3>Example: Simplify the fraction <span class="intbl">
|
|
<em>10</em>
|
|
<strong>35</strong>
|
|
</span> :</h3>
|
|
<p>Dividing by <b>2</b> doesn't work because <b>35 can't be exactly divided by 2</b> (35/2 = 17½)</p>
|
|
<p>Likewise we can't divide exactly by <b>3</b> (10/3 = 3<span class="intbl">
|
|
<em>1</em>
|
|
<strong>3</strong>
|
|
</span> and also 35/3=11<span class="intbl">
|
|
<em>2</em>
|
|
<strong>3</strong>
|
|
</span>)</p>
|
|
<p>No need to check <b>4</b> (we checked 2 already, and 4 is just 2×2).</p>
|
|
<p>But <b>5</b> does work!</p>
|
|
<table align="center" border="0" cellspacing="3" cellpadding="0">
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td>÷ 5</td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="3"><img src="images/style/right-over-arrow.gif" width="75" height="25" alt="right over arrow" /> </td>
|
|
</tr>
|
|
<tr align="center" class="large">
|
|
<td colspan="3"><span class="intbl"><em>10</em><strong>35</strong></span> = <span class="intbl"><em>2</em><strong>7</strong></span></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="3"><img src="images/style/right-under-arrow.gif" width="75" height="25" alt="right under arrow" /></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td>÷ 5</td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
<p>That is as far as we can go. The fraction simplifies to <span class="intbl">
|
|
<em>2</em>
|
|
<strong>7</strong>
|
|
</span></p>
|
|
</div>
|
|
<p>Notice that after checking 2 we didn't need to check 4 (4 is 2×2)? </p>
|
|
<p>We also don't need to check 6 when we have checked 2 and 3 (6 is 2x3). </p>
|
|
<p>In fact, when checking from smallest to largest we use <a href="prime_numbers.html">prime numbers</a>:</p>
|
|
<p class="center larger">2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, ...</p>
|
|
<h2>Method 2</h2>
|
|
<p>Divide both the top and bottom of the fraction by the <a href="greatest-common-factor.html">Greatest Common Factor</a> (you have to work it out first!).
|
|
<br />
|
|
<br />
|
|
</p>
|
|
<div class="example">
|
|
<h3>Example: Simplify the fraction <span class="intbl"><em>8</em><strong>12</strong></span> :</h3>
|
|
<p>
|
|
The largest number that goes exactly into both 8 and 12 is 4, so <i>the Greatest Common Factor is 4</i>.
|
|
</p>
|
|
<p>Divide both top and bottom by 4: </p>
|
|
<div class="clear">
|
|
<table align="center" border="0" cellspacing="3" cellpadding="0">
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td class="Larger">÷ 4</td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="3" class="Larger"><img src="images/style/right-over-arrow.gif" width="75" height="25" alt="right over arrow" /> </td>
|
|
</tr>
|
|
<tr align="center" class="large">
|
|
<td colspan="3"><span class="intbl"><em>8</em><strong>12</strong></span> = <span class="intbl"><em>2</em><strong>3</strong></span></td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td colspan="3"><img src="images/style/right-under-arrow.gif" width="75" height="25" alt="right under arrow" /> </td>
|
|
</tr>
|
|
<tr align="center">
|
|
<td> </td>
|
|
<td>÷ 4</td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
</div><p>That is as far as we can go. The fraction simplifies to <span class="intbl">
|
|
<em>2</em>
|
|
<strong>3</strong>
|
|
</span></p>
|
|
</div>
|
|
<h2>Simplifying Fractions Automatically</h2>
|
|
<p>OK, there is a <i>third</i> method, use this tool: </p>
|
|
<div class="center">
|
|
<form name="form1" id="form1">
|
|
<div class="clear">
|
|
<table border="0" cellspacing="5" cellpadding="0" align="center">
|
|
<tr>
|
|
<td><input type="text" name="text1" size="3" style="text-align:center; font: 18px Verdana;" /></td>
|
|
<td rowspan="3"><b>
|
|
<input type="button" value="Simplify ⇒" onClick="go()" name="button" />
|
|
</b></td>
|
|
<td><input type="text" name="ans1" size="3" style="text-align:center; font: 18px Verdana;" /></td>
|
|
</tr>
|
|
<tr style="border-top: 1px solid black;">
|
|
<td><input type="text" name="text2" size="3" style="text-align:center; font: 18px Verdana;" /></td>
|
|
<td><input type="text" name="ans2" size="3" style="text-align:center; font: 18px Verdana;" /></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<br /><span id="example"> </span>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
|
|
|
<p style="float:left; margin: 0 10px 5px 0;"><a href="numbers/fraction-number-line.html"><img src="numbers/images/fraction-number-line-thumb.gif" width="189" height="94" border="0" alt="fraction number line" /></a></p>
|
|
<h2>Fractions on the Number Line</h2>
|
|
<p>Also ... see an animation of <a href="numbers/fraction-number-line.html">Fractions on the Number Line</a> where you can see many common fractions and their simpler version.</p>
|
|
<p>We also have a <a href="numbers/fraction-decimal-chart.html">chart of fractions</a> with the simplest fraction highlighted.</p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<div class="questions">
|
|
|
|
|
|
<script type="text/javascript">getQ(918, 919, 1380, 1381, 3543, 3544, 1379, 3545, 3546, 3547);</script>
|
|
|
|
|
|
</div>
|
|
|
|
<div class="related">
|
|
<a href="fractions.html">Introduction to Fractions</a>
|
|
<a href="numbers/fraction-number-line.html">Fraction Number Line</a>
|
|
<a href="greatest-common-factor.html">Greatest Common Factor</a>
|
|
<a href="greatest-common-factor-tool.html">Greatest Common Factor Tool</a>
|
|
<a href="equivalent_fractions.html">Equivalent Fractions</a>
|
|
<a href="fractions_addition.html">Adding Fractions</a>
|
|
<a href="fractions_subtraction.html">Subtracting Fractions</a>
|
|
<a href="fractions-menu.html">Fractions Index</a>
|
|
</div>
|
|
<!-- #EndEditable --></div>
|
|
<div id="adend" class="centerfull noprint">
|
|
<script type="text/javascript">document.write(getAdEnd());</script>
|
|
</div>
|
|
<div id="footer" class="centerfull noprint">
|
|
<script type="text/javascript">document.write(getFooter());</script>
|
|
</div>
|
|
<div id="copyrt">
|
|
Copyright © 2017 MathsIsFun.com
|
|
</div>
|
|
|
|
<script type="text/javascript">document.write(getBodyEnd());</script>
|
|
</body>
|
|
<!-- #EndTemplate -->
|
|
<!-- Mirrored from www.mathsisfun.com/simplifying-fractions.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 29 Oct 2022 00:36:00 GMT -->
|
|
</html>
|