ÿþ<html> <head> <title>oneStepInequalities.html</title> <link href="../styleSheets/standardStyleSheet.css" rel="stylesheet"> <style type="text/css"> @import "../styleSheets/problemStyleSheet.css"; </style> <script type="text/javascript"> var inequalityOperator var inequalityOperatorNumber var coefficient var variable var numRight var counter=1 var caption=" " var operatorSymbol // + - " / var answer var equationLeftSide ="" var equationRightSide ="" var equationMade = false //no equation has been made to solve yet //these are used to make the worksheet and the answer key var problemCaption_Array = new Array() var problemEquation_Array = new Array() var problemAnswer_Array = new Array() equationLeftSide.toString() equationRightSide.toString() var equationType // what type of equation + - " / var variableLococation // what side of the equation the variable is on? var closeTagForScript ="</s" +"cript>" function makeInequalityOperator() { inequalityOperatorNumber = Math.floor(Math.random()*4 + 1) //LE = &#8804; //GE = &#8805; if(inequalityOperatorNumber == 1) inequalityOperator = "<" if(inequalityOperatorNumber == 2) inequalityOperator = "d"" if(inequalityOperatorNumber == 3) inequalityOperator = ">" if(inequalityOperatorNumber == 4) inequalityOperator = "e"" } function switchIOpDirection() { switched = "no" if(inequalityOperator == "<" && switched == "no") { inequalityOperator = ">" switched = "yes" } if(inequalityOperator == ">" && switched == "no") { inequalityOperator = "<" switched = "yes" } if(inequalityOperator == "e"" && switched == "no") { inequalityOperator = "d"" switched = "yes" } if(inequalityOperator == "d"" && switched == "no") { inequalityOperator = "e"" switched = "yes" } } function MakeCoefficient() { coefficient = Math.floor(Math.random()*9 + 2) if(Math.floor(Math.random()*2) == 1) coefficient = -1*coefficient //coefficient = -1*coefficient } function makeVariable() { varNum = Math.floor(Math.random()*4 + 1) if(varNum == 1) { variable = "W" } if(varNum ==2) { variable = "X" } if(varNum == 3) { variable = "Y" } if(varNum == 4) { variable = "Z" } } function makeNumRight() { coefficientMultiplier = Math.floor(Math.random()*9 + 2) numRight = coefficientMultiplier*coefficient } function makeOperatorSymbol() { mathOperatorNumber = Math.floor(Math.random()*4 ) if (mathOperatorNumber == 0) { operatorSymbol = "" " } if (mathOperatorNumber == 1) { operatorSymbol = "/" } if (mathOperatorNumber == 2) { operatorSymbol = "+" } if (mathOperatorNumber == 3) { operatorSymbol = "-" } }//end function makeOperatorSymbol() //clears the problem and the answer function clearProblem() {if (equationMade == false) { // do nothing if there is no equation to solve. alert("Press the 'Make equation' button to start") } else { eraseProblemParagraph() eraseAnswer() } } function eraseProblemParagraph() { clearHint()//clear hint and other writing from page eraseAnswer() equationMade = false oldParagraph = problemParagraph newParagraph = document.createElement("p") document.getElementById("theB" +"ody").replaceChild(newParagraph, oldParagraph) newParagraph.id = "problemParagraph" newParagraph.className = "problem" }//end function eraseProblemParagraph() function makeEquation() //*************************** MAKE THE INEQUALITY HERE ************************************** { eraseProblemParagraph()//clear all parts of the problem paragraph before starting a new problem //the line below MUST come after the above line because the above line resets the value of equationMade equationMade = true //an equation is now going to be made MakeCoefficient() makeVariable() makeNumRight() makeOperatorSymbol() equationLeftSide ="" equationRightSide ="" equationString = "" makeInequalityOperator() //alter the form of the equation - variable term on the left or right side of the equation. equationForm = Math.floor(Math.random()*2 ) if (equationForm == 0) { variableLocation = "leftSide" } else { variableLocation = "rightSide" } if (operatorSymbol == "" ") { // Generate a multiplication equation ***************** equationType = "" " if (equationForm == 0) { // variable on left side of equation equationString = coefficient + variable + " " + inequalityOperator + " " + numRight newText = document.createTextNode(equationString) //newText = document.createTextNode(coefficient + variable + " " + inequalityOperator + " " + numRight) problemParagraph.appendChild(newText) equationLeftSide = coefficient + variable equationRightSide = numRight } else { // variable on the right side of the equation equationString = numRight + " " + inequalityOperator + " " + coefficient + variable newText = document.createTextNode(equationString) //newText = document.createTextNode(numRight + " " + inequalityOperator + " " + coefficient + variable) problemParagraph.appendChild(newText) equationLeftSide = numRight equationRightSide = coefficient + variable } }// end if (operatorSymbol == "" ") if (operatorSymbol =="/") { // Generate a division equation ********************** equationType = "/" if(equationForm == 0) { //variable on left side of equation equationString = variable + operatorSymbol + coefficient + " " + inequalityOperator + " " + numRight if(coefficient < 0) equationString = variable + operatorSymbol +"(" + coefficient +")" + " " + inequalityOperator + " " + numRight newText = document.createTextNode(equationString) //newText = document.createTextNode(variable + " " + operatorSymbol + " " + coefficient + " " + inequalityOperator + " " + numRight) problemParagraph.appendChild(newText) equationLeftSide = variable + operatorSymbol + coefficient equationRightSide = numRight } else { //variable on the right side of the equation equationString = numRight + " " + inequalityOperator + " " + variable + operatorSymbol + coefficient if(coefficient < 0) equationString = numRight + " " + inequalityOperator + " " + variable + operatorSymbol + "(" + coefficient +")" newText = document.createTextNode(equationString) //newText = document.createTextNode(numRight + " " + inequalityOperator + " " + variable + " " + operatorSymbol + " " + coefficient) problemParagraph.appendChild(newText) equationLeftSide = numRight equationRightSide = variable + operatorSymbol + coefficient } }//end if(operatorSymbol =="/" if (operatorSymbol == "+") { // generate an addition equation ******************* equationType = "+" if (equationForm == 0) { //variable on left side of equation equationString = variable + " " + operatorSymbol + " " + coefficient + " " + inequalityOperator + " " + numRight newText = document.createTextNode(equationString) //newText = document.createTextNode(variable + " " + operatorSymbol + " " + coefficient + " " + inequalityOperator + " " + numRight) problemParagraph.appendChild(newText) equationLeftSide = variable + operatorSymbol + coefficient equationRightSide = numRight } else { //variable on the right side of the equation equationString = numRight + " " + inequalityOperator + " " + variable + " " + operatorSymbol + " " + coefficient newText = document.createTextNode(equationString) //newText = document.createTextNode(numRight + " " + inequalityOperator + " " + variable + " " + operatorSymbol + " " + coefficient) problemParagraph.appendChild(newText) equationLeftSide = numRight equationRightSide = variable + operatorSymbol + coefficient } }//end if (operatorSymbol == "+") if (operatorSymbol =="-") { // generate a subtraction equation *************** equationType = "-" if (equationForm == 0) { //variable on left side of equation equationString = variable + " " + operatorSymbol + " " + coefficient + " " + inequalityOperator + " " + numRight newText = document.createTextNode(equationString) //newText = document.createTextNode(variable + " " + operatorSymbol + " " + coefficient + " " + inequalityOperator + " " + numRight) problemParagraph.appendChild(newText) equationLeftSide = variable + operatorSymbol + coefficient equationRightSide = numRight } else { //variable on the right side of the equation equationString = numRight + " " + inequalityOperator + " " + variable + " " + operatorSymbol + " " + coefficient newText = document.createTextNode(equationString) //newText = document.createTextNode(numRight + " " + inequalityOperator + " " + variable + " " + operatorSymbol + " " + coefficient) problemParagraph.appendChild(newText) equationLeftSide = numRight equationRightSide = variable + operatorSymbol + coefficient } }// end if (operatorSymbol =="-") caption=counter counter = counter + 1 document.getElementById("problem counter").childNodes[0].nodeValue = "Problem # " +caption clearHint() eraseAnswer() equationLeftSide = equationLeftSide.toString() equationRightSide = equationRightSide.toString() //equationString = equationLeftSide +" " + inequalityOperator +" " + equationRightSide }// END OF function makeEquation() ******************************************************************************************* function makeOneStepInequalityWorksheetAndAnswerKey() { //reset variables caption = " " counter = 1 for (i=1;i<=10;++i) //make the problems and their answers for the worksheet and store them in arrays for later printing { makeEquation() showAnswer() problemCaption_Array[i] = caption problemEquation_Array[i] = equationString problemAnswer_Array[i] = answer } theDateAndTimeNow = new Date() writeTheWorksheet() writeTheAnswerKey() //clear the problem and whatever else is on the web page so the page is blank clearProblem() //clearHint() //reset variables so the page looks like it was refreshed caption = " " counter = 1 document.getElementById("problem counter").childNodes[0].nodeValue = "Problem # " + 1 }//end function makeOneStepInequalityWorksheetAndAnswerKey() /////////////////////////////////////////////////////////////////////////////////////// ///////this function calculates the answer and then puts it into the answer paragraph// /////////////////////////////////////////////////////////////////////////////////////// function calculateAnswer() { if (equationMade == false) { // do nothing if there is no equation to solve. alert("Press the 'Make equation' button to start") } else // begin else 1 { if (operatorSymbol == "" ") { // multiplication equation, solve by division. if(coefficient < 0) switchIOpDirection() if(equationForm == 0) answer = variable + " " + inequalityOperator + " " + numRight/coefficient if(equationForm == 1) answer = numRight/coefficient + " " + inequalityOperator + " " + variable //document.getElementById("answerParagraphAnswerSpan").childNodes[0].nodeValue = answer } else // begin else 2 { if (operatorSymbol == "/") { // division equation, solve by multiplication if(coefficient < 0) switchIOpDirection() if(equationForm == 0) answer = variable + " " + inequalityOperator + " " + numRight*coefficient if(equationForm == 1) answer = numRight*coefficient + " " + inequalityOperator + " " + variable //document.getElementById("answerParagraphAnswerSpan").childNodes[0].nodeValue = answer } else // begin else 3 { if (operatorSymbol == "+") { // addition equation, slove using subtraction if(equationForm == 0) answer = variable + " " + inequalityOperator + " " + (parseInt(numRight) - parseInt(coefficient)) if(equationForm == 1) answer = (parseInt(numRight) - parseInt(coefficient)) + " " + inequalityOperator + " " + variable //document.getElementById("answerParagraphAnswerSpan").childNodes[0].nodeValue = answer } else // begin else 4 { if (operatorSymbol == "-") { // subtraction equation, slove using addition if(equationForm == 0) answer = variable + " " + inequalityOperator + " " + (parseInt(numRight) + parseInt(coefficient)) if(equationForm == 1) answer = (parseInt(numRight) + parseInt(coefficient)) + " " + inequalityOperator + " " + variable //document.getElementById("answerParagraphAnswerSpan").childNodes[0].nodeValue = answer } }//end else 4 }// end else 3 }// end else 2 }// end else 1 }// end function calculateAnswer() /////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////// /////////////// ////////////////////////// this function erases the answerParagrpahAnswerSpan /////////////// ////////////////////////// /////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////// function eraseAnswer() { //erase answerSpan and reset answer to "" newSpan = document.createElement("span") newText = document.createTextNode("") newSpan.appendChild(newText) newSpan.className = "answerColor" oldSpan = answerParagraphAnswerSpan document.getElementById("answerParagraph").replaceChild(newSpan, oldSpan) newSpan.id = "answerParagraphAnswerSpan" answer="" }//end function eraseAnswer() function showAnswer() { if(caption ==" ") { // if no problem has been generated - do nothing. alert("Press the 'New Problem' button to get started") } else { eraseAnswer() calculateAnswer() putAnswerInAnswerParagraphAnswerSpan() } }//end function showAnswer() //////////////////////////////////////////////////////////////////////////////////// ////////// Put the answer in the answerParagraphAnswerSpan /////////////////// //////////////////////////////////////////////////////////////////////////////////// function putAnswerInAnswerParagraphAnswerSpan() { newSpan = document.createElement("span") newText = document.createTextNode( answer) newSpan.appendChild(newText) newSpan.className = "answerColor" oldSpan = answerParagraphAnswerSpan document.getElementById("answerParagraph").replaceChild(newSpan, oldSpan) newSpan.id = "answerParagraphAnswerSpan" }//end function putAnswerInAnswerParagraphAnswerSpan() function hint() //*********************************************************************************** { if (equationMade == false) { // do nothing if there is no equation to solve. alert("Press the 'Make equation' button to start") } else //begin else 1 { if (operatorSymbol == "" ") { // hint for solving multiplication equation document.getElementById("hintForSolving").childNodes[0].nodeValue = "Divide " document.getElementById("highlight01").childNodes[0].nodeValue = "BOTH SIDES OF THE EQUATION" document.getElementById("hintForSolving").childNodes[2].nodeValue = " by " document.getElementById("num01").childNodes[0].nodeValue = coefficient document.getElementById("hintForSolving").childNodes[4].nodeValue = " to undo multiplying " + variable + " by " document.getElementById("num02").childNodes[0].nodeValue = coefficient +"." } else // begin else 2 { if (operatorSymbol == "/") { // hint for solving division equation document.getElementById("hintForSolving").childNodes[0].nodeValue = "Multiply " document.getElementById("highlight01").childNodes[0].nodeValue = "BOTH SIDES OF THE EQUATION" document.getElementById("hintForSolving").childNodes[2].nodeValue = " by " document.getElementById("num01").childNodes[0].nodeValue = coefficient document.getElementById("hintForSolving").childNodes[4].nodeValue = " to undo dividing " + variable + " by " document.getElementById("num02").childNodes[0].nodeValue = coefficient +"." } else // begin else 3 { if (operatorSymbol == "+") { // hint for solving addition equation document.getElementById("hintForSolving").childNodes[0].nodeValue = "Subtract "+ coefficient + " " document.getElementById("highlight01").childNodes[0].nodeValue = "FROM BOTH SIDES OF THE EQUATION" document.getElementById("hintForSolving").childNodes[2].nodeValue = "" document.getElementById("num01").childNodes[0].nodeValue = "" document.getElementById("hintForSolving").childNodes[4].nodeValue = " to undo adding "+coefficient document.getElementById("num02").childNodes[0].nodeValue = " to " + variable + "." } else // begin else 4 { if (operatorSymbol == "-") { // hint for solving subtraction equation document.getElementById("hintForSolving").childNodes[0].nodeValue = "Add "+ coefficient + " " document.getElementById("highlight01").childNodes[0].nodeValue = "TO BOTH SIDES OF THE EQUATION" document.getElementById("hintForSolving").childNodes[2].nodeValue = "" document.getElementById("num01").childNodes[0].nodeValue = "" document.getElementById("hintForSolving").childNodes[4].nodeValue = " to undo subtracting "+coefficient document.getElementById("num02").childNodes[0].nodeValue = " from " + variable + "." } }// end else 4 }// end else 3 }// end else 2 }// end else 1 }// end function hint() //****************************************************************************** function clearHint() { document.getElementById("hintForSolving").childNodes[0].nodeValue = "" document.getElementById("highlight01").childNodes[0].nodeValue = "" document.getElementById("hintForSolving").childNodes[2].nodeValue = "" document.getElementById("num01").childNodes[0].nodeValue = "" document.getElementById("hintForSolving").childNodes[4].nodeValue = "" document.getElementById("num02").childNodes[0].nodeValue = "" } function showMeHow2() { if (equationMade == false)// if equationMade == false then no equation has been generated yet { // do nothing if there is no equation to solve. alert("Press the 'Make equation' button to start") } else { startShowMeHowPage() //operatorSymbol + - " / if (operatorSymbol == "+") { showAddSolution() } if (operatorSymbol == "-") { showSubSolution() } if (operatorSymbol == "" ") { showMulSolution() } if (operatorSymbol == "/") { showDivSolution() } //put the window.close button on the bottom of the showMeHowWindow page, skip some lines first //newElem = showMeHowWindow.document.createElement("br") //showMeHowWindow.buttonLocation.appendChild(newElem) //newElem = showMeHowWindow.document.createElement("br") //showMeHowWindow.buttonLocation.appendChild(newElem) //create button and put it on the page newElem = showMeHowWindow.document.createElement("input") newElem.type="button" newElem.value = "Close this window" newElem.onclick = showMeHowWindow.n //you must put the window.function name if the function is on a different page than //the line of code that calls it. Also do not put () after the function name //when writing the code for a function call from script showMeHowWindow.buttonLocation.appendChild(newElem) //write the explanation in the explanation section (expDiv) writeExplanation() } }//end function showMeHow2() function startEquationSection() { newText = showMeHowWindow.document.createTextNode(equationLeftSide + " = " + equationRightSide) showMeHowWindow.equDiv.appendChild(newText) newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) } //**************************************************************************************************** //**************************************************************************************************** //**************************************************************************************************** function writeExplanation() { newText = showMeHowWindow.document.createTextNode("Original Problem") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) if (equationType == "+")//how to solve an addition equation********************************************** { newText = showMeHowWindow.document.createTextNode("Subtract ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" from both sides") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("to undo adding ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" to ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(variable) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(".") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("Answer") showMeHowWindow.expDiv.appendChild(newText) }//end if (equationType == "+") if(equationType == "-")//how to solve a subtraction equation********************************************** { newText = showMeHowWindow.document.createTextNode("Add ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" to both sides") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("to undo subtracting ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" from ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(variable) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(".") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("Answer") showMeHowWindow.expDiv.appendChild(newText) }//end if(equationType == "-") if(equationType == "" ")//how to solve a multiplication equation********************************************** { newText = showMeHowWindow.document.createTextNode("Divide both sides by ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("to undo multiplying ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(variable) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" by ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(".") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("Answer") showMeHowWindow.expDiv.appendChild(newText) }//end if(equationType == "" ") if(equationType == "/")//how to solve a division equation************************************************* { newText = showMeHowWindow.document.createTextNode("Multiply both sides by ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("to undo dividing ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(variable) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(" by ") showMeHowWindow.expDiv.appendChild(newText) //span emphasize newElem = showMeHowWindow.document.createElement("span") newElem.className="emphasize" newText = showMeHowWindow.document.createTextNode(coefficient) newElem.appendChild(newText) showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode(".") showMeHowWindow.expDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.expDiv.appendChild(newElem) newText = showMeHowWindow.document.createTextNode("Answer") showMeHowWindow.expDiv.appendChild(newText) }//end if(equationType == "/") }//end function writeExplanation() //**************************************************************************************************** //**************************************************************************************************** //**************************************************************************************************** function startShowMeHowPage() { //write contents of new page to the page (tags and functions only, no content in the body) showMeHowWindow = window.open() showMeHowWindow.document.write("<html>\r\n<head>\r\n<title>Show Me How To solve the Problem</title>\r\n") showMeHowWindow.document.write("<link href='showMeHowWindowStyleSheet.css' rel='styleSheet'>\r\n") newContent = "" newContent += "<script type='text/javascript'>\r\n\r\n" //newContent += "function n()\r\n{\r\nequDiv.style.backgroundColor='silver'\r\n" //newContent += "equDiv.style.color='green'\r\n}\r\n" newContent += " function n()\r\n { window.close()\r\n" newContent += " }\r\n\r\n" newContent += closeTagForScript showMeHowWindow.document.write(newContent) showMeHowWindow.document.write("\r\n") showMeHowWindow.document.write("</head>") showMeHowWindow.document.write("\r\n") showMeHowWindow.document.write("<b" +"ody id='theBody'>\r\n") showMeHowWindow.document.write("<div class='equSec' id='equDiv'>\r\n</div>\r\n") showMeHowWindow.document.write("<div class='expSec' id='expDiv'>\r\n</div>\r\n") showMeHowWindow.document.write("<div class='buttonSection' id = 'buttonLocation'>\r\n") showMeHowWindow.document.write("</body>\r\n</html>") //insert the original equation into the equDiv startEquationSection() } function padLeftSide(x) { x = x.toString() numberOfPadsNeeded = 10 - x.length padding = "" for(i=1; i <= numberOfPadsNeeded; i++) { padding = " " + padding } padding = "." + padding newText = showMeHowWindow.document.createTextNode(padding) showMeHowWindow.equDiv.appendChild(newText) }//end function padLeftSide(x) function padRightSide(x,y) { //x is rightSideStep //y is equationRightSide x = x.toString() y = y.toString() padding = "" numberOfPadsNeeded = y.length - x.length if(numberOfPadsNeeded < 0) { numberOfPadsNeeded = -1*numberOfPadsNeeded } //make padding for(i=1; i <= numberOfPadsNeeded; ++i) { padding = " " + padding } //put padding in newText = showMeHowWindow.document.createTextNode(padding) showMeHowWindow.equDiv.appendChild(newText) }//end function padRightSide(x,y) function putInStepDivider() { //put in step divider numDashesLeft = Math.max(equationLeftSide.length, leftSideStep1.length) numDashesRight = Math.max(equationRightSide.length, rightSideStep1.length) // make stepDivider stepDividerLeft="" stepDividerRight="" stepDivider="" for(i=1; i<= numDashesLeft; ++i) { stepDividerLeft = "-" + stepDividerLeft } for(i=1; i<=numDashesRight; ++i) { stepDividerRight = stepDividerRight + "-" } stepDivider = stepDividerLeft + "---" + stepDividerRight padLeftSide(stepDividerLeft) newText = showMeHowWindow.document.createTextNode(stepDivider) showMeHowWindow.equDiv.appendChild(newText) }//end function PutInStepDivider() function showAddSolution()//************************* SHOW HOW TO SOLVE AN ADDITION EQUATION ****************** { //write original equation to equDiv (with padding this time) padLeftSide(equationLeftSide) newText = showMeHowWindow.document.createTextNode(equationLeftSide + " = ") showMeHowWindow.equDiv.appendChild(newText) rightSideStep1 = "-" + coefficient rightSideStep1.toString() equationRightSide.toString() //pad right side if necessary if(equationRightSide.length < rightSideStep1.length ) { padRightSide(rightSideStep1, equationRightSide) } newText = showMeHowWindow.document.createTextNode(equationRightSide) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show step 1 of the solution //pad the left side and put the left side in. leftSideStep1 = "-" + coefficient padLeftSide(leftSideStep1)//Appends the padding to the page. Do this before appending leftsideStep1 newText = showMeHowWindow.document.createTextNode(leftSideStep1) showMeHowWindow.equDiv.appendChild(newText) //put the 3 blank spaces in next newText = showMeHowWindow.document.createTextNode(" ") showMeHowWindow.equDiv.appendChild(newText) //pad the right side (if needed) and put the right side in. rightSideStep1 = "-" + coefficient if(rightSideStep1.length < equationRightSide.length) { padRightSide(rightSideStep1, equationRightSide) } newText = showMeHowWindow.document.createTextNode(rightSideStep1) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //put in step divider numDashesLeft = Math.max(equationLeftSide.length, leftSideStep1.length) numDashesRight = Math.max(equationRightSide.length, rightSideStep1.length) // make stepDivider stepDividerLeft="" stepDividerRight="" stepDivider="" for(i=1; i<= numDashesLeft; ++i) { stepDividerLeft = "-" + stepDividerLeft } for(i=1; i<=numDashesRight; ++i) { stepDividerRight = stepDividerRight + "-" } stepDivider = stepDividerLeft + "---" + stepDividerRight padLeftSide(stepDividerLeft) newText = showMeHowWindow.document.createTextNode(stepDivider) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show the answer answerLeft = "" answerRight = "" if(variableLocation == "leftSide") { answerLeft = variable padLeftSide(answerLeft) answerRight = parseInt(numRight) - parseInt(coefficient) answerRight.toString() newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } if(variableLocation == "rightSide") { answerLeft = parseInt(numRight) - parseInt(coefficient) answerLeft.toString() padLeftSide(answerLeft) answerRight = variable newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } }//end function showAddSolution() ********************************************************************************** function showSubSolution()//********************** SHOW HOW TO SOLVE A SUBTRACTION EQUATION *********************** { //write original equation to equDiv (with padding this time) padLeftSide(equationLeftSide) newText = showMeHowWindow.document.createTextNode(equationLeftSide + " = ") showMeHowWindow.equDiv.appendChild(newText) rightSideStep1 = "+" + coefficient rightSideStep1.toString() equationRightSide.toString() //pad right side if necessary if(equationRightSide.length < rightSideStep1.length ) { padRightSide(rightSideStep1, equationRightSide) } newText = showMeHowWindow.document.createTextNode(equationRightSide) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show step 1 of the solution //pad the left side and put the left side in. leftSideStep1 = "+" + coefficient padLeftSide(leftSideStep1)//Appends the padding to the page. Do this before appending leftsideStep1 newText = showMeHowWindow.document.createTextNode(leftSideStep1) showMeHowWindow.equDiv.appendChild(newText) //put the 3 blank spaces in next newText = showMeHowWindow.document.createTextNode(" ") showMeHowWindow.equDiv.appendChild(newText) //pad the right side (if needed) and put the right side in. rightSideStep1 = "+" + coefficient if(rightSideStep1.length < equationRightSide.length) { padRightSide(rightSideStep1, equationRightSide) } newText = showMeHowWindow.document.createTextNode(rightSideStep1) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //put in step divider numDashesLeft = Math.max(equationLeftSide.length, leftSideStep1.length) numDashesRight = Math.max(equationRightSide.length, rightSideStep1.length) // make stepDivider stepDividerLeft="" stepDividerRight="" stepDivider="" for(i=1; i<= numDashesLeft; ++i) { stepDividerLeft = "-" + stepDividerLeft } for(i=1; i<=numDashesRight; ++i) { stepDividerRight = stepDividerRight + "-" } stepDivider = stepDividerLeft + "---" + stepDividerRight padLeftSide(stepDividerLeft) newText = showMeHowWindow.document.createTextNode(stepDivider) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show the answer answerLeft = "" answerRight = "" if(variableLocation == "leftSide") { answerLeft = variable padLeftSide(answerLeft) answerRight = parseInt(numRight) + parseInt(coefficient) answerRight.toString() newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } if(variableLocation == "rightSide") { answerLeft = parseInt(numRight) + parseInt(coefficient) answerLeft.toString() padLeftSide(answerLeft) answerRight = variable newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } }//end function showSubSolution() *********************************************************************************** function showMulSolution()//******************** SHOW HOW TO SOLVE A MULTIPLICATION EQUATION ****************** { //write original equation to equDiv (with padding this time and underlined to simulate division bars) padLeftSide(equationLeftSide) //newText = showMeHowWindow.document.createTextNode(equationLeftSide + " = " + equationRightSide) //showMeHowWindow.equDiv.appendChild(newText) newSpan = showMeHowWindow.document.createElement("span") newSpan.className = "underline" newText = showMeHowWindow.document.createTextNode(equationLeftSide) newSpan.appendChild(newText) showMeHowWindow.equDiv.appendChild(newSpan) newText = showMeHowWindow.document.createTextNode(" = ") showMeHowWindow.equDiv.appendChild(newText) newSpan = showMeHowWindow.document.createElement("span") newSpan.className = "underline" newText = showMeHowWindow.document.createTextNode(equationRightSide) newSpan.appendChild(newText) showMeHowWindow.equDiv.appendChild(newSpan) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //divide both sides by coefficient padLeftSide(coefficient.toString()) newText = showMeHowWindow.document.createTextNode(coefficient + " " + coefficient) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) leftSideStep1 = coefficient leftSideStep1 = leftSideStep1.toString() rightSideStep1 = coefficient rightSideStep1 = rightSideStep1.toString() putInStepDivider() //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show the answer answerLeft = "" answerRight = "" if(variableLocation == "leftSide") { answerLeft = variable padLeftSide(answerLeft) answerRight = parseInt(numRight) / parseInt(coefficient) answerRight.toString() newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } if(variableLocation == "rightSide") { answerLeft = parseInt(numRight) / parseInt(coefficient) answerLeft.toString() padLeftSide(answerLeft) answerRight = variable newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } }//end function showMulSolution() ******************************************************************************* function showDivSolution()//********************* SHOW HOW TO SOLVE A DIVISION EQUATION ***************** { //write original equation to equDiv (with padding this time) //equationLeftSide = "(" + equationLeftSide + ")" //equationRightSide = "(" + equationRightSide + ")" padLeftSide(equationLeftSide) newText = showMeHowWindow.document.createTextNode(equationLeftSide + " = " + equationRightSide) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //multiply both sides of the equation by the divisor (called the coefficient) //equationLeftSide = coefficient +"" " + equationLeftSide //don't change the value of equationLeftSide or equationRightSide //equationRightSide = coefficient +"" " + equationRightSide //because the explanation in the show me how window gets meassed up //if the button is pushed more than one time for the same problem //if you do change them. padLeftSide(coefficient +"" " + equationLeftSide) newText = showMeHowWindow.document.createTextNode(coefficient +"" " + equationLeftSide + " = " + coefficient +"" " + equationRightSide) showMeHowWindow.equDiv.appendChild(newText) //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) leftSideStep1 = "" //leftSideStep1 = leftSideStep1.toString() rightSideStep1 = "" //rightSideStep1 = rightSideStep1.toString() putInStepDivider() //crlf newElem = showMeHowWindow.document.createElement("br") showMeHowWindow.equDiv.appendChild(newElem) //show the answer answerLeft = "" answerRight = "" if(variableLocation == "leftSide") { answerLeft = variable padLeftSide(answerLeft) answerRight = parseInt(numRight) * parseInt(coefficient) answerRight.toString() newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } if(variableLocation == "rightSide") { answerLeft = parseInt(numRight) * parseInt(coefficient) answerLeft.toString() padLeftSide(answerLeft) answerRight = variable newText = showMeHowWindow.document.createTextNode(answerLeft + " = " + answerRight) showMeHowWindow.equDiv.appendChild(newText) } }//end function showDivSolution() ******************************************************************************* function writeTheWorksheet() { // Start of block **************** for creating, opening, and writing to the worksheet page************************************************ // Start of block **************** for creating, opening, and writing to the worksheet page************************************************ // Start of block **************** for creating, opening, and writing to the worksheet page************************************************ // Start of block **************** for creating, opening, and writing to the worksheet page************************************************ // create new content for the twoStepEquationsWorksheet.html Window (write the text for the web page) newContent ="<html >\r\n<head>\r\n<title>twoStepEquationsWorksheet.html</title>\r\n" //newContent += "<link href='twoStepEquationsStylesheet.css' rel='styleSheet'>\r\n</link>" newContent += "<link href='../styleSheets/twoStepEquationsStylesheet.css' rel='styleSheet'>\r\n</link>" newContent += "\r\n</head>\r\n<b" +"ody id='theBawd'>\r\n\r\n<p>\r\n" newContent += "\r\n <br>\r\n</p>" newContent += "\r\n</body>\r\n</html>\r\n\r\n" // write HTML to the worksheetWindow (write the web page text to the web page) twoStepEquationsWorksheetWindow = window.open() twoStepEquationsWorksheetWindow.document.write(newContent) //put line01 SIDE A of the worksheet together line01 = "<p class='problemCaptionParagraphA01class'>" + problemCaption_Array[1] + ".</p>\r\n" line01 = line01 + "<p class='problemEquationParagraphA01class'>" + problemEquation_Array[1]+ "</p>\r\n" //line01 = line01 + "<p class='problemAnswerSpaceParagraphA01class'>____</p>\r\n" //put line01 SIDE B of the worksheet together line01 = line01 + "<p class='problemCaptionParagraphB01class'>" + problemCaption_Array[2] + ".</p>\r\n" line01 = line01 + "<p class='problemEquationParagraphB01class'>" + problemEquation_Array[2]+ "</p>\r\n" //line01 = line01 + "<p class='problemAnswerSpaceParagraphB01class'>____</p>\r\n" //put line02 SIDE A of the worksheet together line02 = "<p class='problemCaptionParagraphA02class'>" + problemCaption_Array[3] + ".</p>\r\n" line02 = line02 + "<p class='problemEquationParagraphA02class'>" + problemEquation_Array[3]+ "</p>\r\n" //line02 = line02 + "<p class='problemAnswerSpaceParagraphA02class'>____</p>\r\n" //put line02 SIDE B of the worksheet together line02 = line02 + "<p class='problemCaptionParagraphB02class'>" + problemCaption_Array[4] + ".</p>\r\n" line02 = line02 + "<p class='problemEquationParagraphB02class'>" + problemEquation_Array[4]+ "</p>\r\n" //line02 = line02 + "<p class='problemAnswerSpaceParagraphB02class'>____</p>\r\n" //put line03 SIDE A of the worksheet together line03 = "<p class='problemCaptionParagraphA03class'>" + problemCaption_Array[5] + ".</p>\r\n" line03 = line03 + "<p class='problemEquationParagraphA03class'>" + problemEquation_Array[5]+ "</p>\r\n" //line03 = line03 + "<p class='problemAnswerSpaceParagraphA03class'>____</p>\r\n" //put line03 SIDE B of the worksheet together line03 = line03 + "<p class='problemCaptionParagraphB03class'>" + problemCaption_Array[6] + ".</p>\r\n" line03 = line03 + "<p class='problemEquationParagraphB03class'>" + problemEquation_Array[6]+ "</p>\r\n" //line03 = line03 + "<p class='problemAnswerSpaceParagraphB03class'>____</p>\r\n" //put line04 SIDE A of the worksheet together line04 = "<p class='problemCaptionParagraphA04class'>" + problemCaption_Array[7] + ".</p>\r\n" line04 = line04 + "<p class='problemEquationParagraphA04class'>" + problemEquation_Array[7]+ "</p>\r\n" //line04 = line04 + "<p class='problemAnswerSpaceParagraphA04class'>____</p>\r\n" //put line04 SIDE B of the worksheet together line04 = line04 + "<p class='problemCaptionParagraphB04class'>" + problemCaption_Array[8] + ".</p>\r\n" line04 = line04 + "<p class='problemEquationParagraphB04class'>" + problemEquation_Array[8]+ "</p>\r\n" //line04 = line04 + "<p class='problemAnswerSpaceParagraphB04class'>____</p>\r\n" //put line05 SIDE A of the worksheet together line05 = "<p class='problemCaptionParagraphA05class'>" + problemCaption_Array[9] + ".</p>\r\n" line05 = line05 + "<p class='problemEquationParagraphA05class'>" + problemEquation_Array[9]+ "</p>\r\n" //line05 = line05 + "<p class='problemAnswerSpaceParagraphA05class'>____</p>\r\n" //put line04 SIDE B of the worksheet together line05 = line05 + "<p class='problemCaptionParagraphB05class'>" + problemCaption_Array[10] + ".</p>\r\n" line05 = line05 + "<p class='problemEquationParagraphB05class'>" + problemEquation_Array[10]+ "</p>\r\n" //line05 = line05 + "<p class='problemAnswerSpaceParagraphB05class'>____</p>\r\n" //write line 01 - line05 to the worksheet fractionWorksheet.html twoStepEquationsWorksheetWindow.document.write(line01) twoStepEquationsWorksheetWindow.document.write(line02) twoStepEquationsWorksheetWindow.document.write(line03) twoStepEquationsWorksheetWindow.document.write(line04) twoStepEquationsWorksheetWindow.document.write(line05) //write bottomOfPageParagraph twoStepEquationsWorksheetWindow.document.write("<p class ='bottomOfPageClass'>" + theDateAndTimeNow + " " + " </p>") // End of block **************** for creating, opening, and writing to the worksheet page************************************************ // End of block **************** for creating, opening, and writing to the worksheet page************************************************ // End of block **************** for creating, opening, and writing to the worksheet page************************************************ // End of block **************** for creating, opening, and writing to the worksheet page************************************************ }//end function writeTheWorksheet() function writeTheAnswerKey() { // Start of block **************** for creating, opening, and writing to the answer key page************************************************ // Start of block **************** for creating, opening, and writing to the answer key page************************************************ // Start of block **************** for creating, opening, and writing to the answer key page************************************************ // Start of block **************** for creating, opening, and writing to the answer key page************************************************ // create new content for the twoStepEquationsAnswerKey.html Window (write the text for the web page) newContent ="<html >\r\n<head>\r\n<title>twoStepEquationsAnswerKey.html</title>\r\n" //newContent += "<link href='twoStepEquationsStylesheet.css' rel='styleSheet'>\r\n</link>" newContent += "<link href='../styleSheets/twoStepEquationsStylesheet.css' rel='styleSheet'>\r\n" newContent += "<style type='text/css'>\r\n" newContent += "@import '../styleSheets/problemStyleSheet.css';\r\n" newContent += "</style>\r\n" newContent += "\r\n</head>\r\n<b" +"ody id='theBawd'>\r\n\r\n<p>\r\n" newContent += "\r\n <br>\r\n</p>" newContent += "\r\n</body>\r\n</html>\r\n\r\n" // write HTML to the worksheetAnswerKeyWindow (write the web page text to the web page) twoStepEquationsAnswerKeyWindow = window.open() twoStepEquationsAnswerKeyWindow.document.write(newContent) //put line01 SIDE A of the worksheet answer key together line01 = "<p class='problemCaptionParagraphA01class'>" + problemCaption_Array[1] + ".</p>\r\n" line01 = line01 + "<p class='problemEquationParagraphA01class'>" + problemEquation_Array[1]+ "</p>\r\n" line01 = line01 + "<p class='problemAnswerSpaceParagraphA01class'><span class='answerColor'>" + problemAnswer_Array[1] +"</span></p>\r\n" //put line01 SIDE B of the worksheet answer key together line01 = line01 + "<p class='problemCaptionParagraphB01class'>" + problemCaption_Array[2] + ".</p>\r\n" line01 = line01 + "<p class='problemEquationParagraphB01class'>" + problemEquation_Array[2]+ "</p>\r\n" line01 = line01 + "<p class='problemAnswerSpaceParagraphB01class'><span class='answerColor'>" + problemAnswer_Array[2] +"</span></p>\r\n" //put line02 SIDE A of the worksheet answer key together line02 = "<p class='problemCaptionParagraphA02class'>" + problemCaption_Array[3] + ".</p>\r\n" line02 = line02 + "<p class='problemEquationParagraphA02class'>" + problemEquation_Array[3]+ "</p>\r\n" line02 = line02 + "<p class='problemAnswerSpaceParagraphA02class'><span class='answerColor'>" + problemAnswer_Array[3] +"</span></p>\r\n" //put line02 SIDE B of the worksheet answer key together line02 = line02 + "<p class='problemCaptionParagraphB02class'>" + problemCaption_Array[4] + ".</p>\r\n" line02 = line02 + "<p class='problemEquationParagraphB02class'>" + problemEquation_Array[4]+ "</p>\r\n" line02 = line02 + "<p class='problemAnswerSpaceParagraphB02class'><span class='answerColor'>" + problemAnswer_Array[4] +"</span></p>\r\n" //put line03 SIDE A of the worksheet answer key together line03 = "<p class='problemCaptionParagraphA03class'>" + problemCaption_Array[5] + ".</p>\r\n" line03 = line03 + "<p class='problemEquationParagraphA03class'>" + problemEquation_Array[5]+ "</p>\r\n" line03 = line03 + "<p class='problemAnswerSpaceParagraphA03class'><span class='answerColor'>" + problemAnswer_Array[5] +"</span></p>\r\n" //put line03 SIDE B of the worksheet answer key together line03 = line03 + "<p class='problemCaptionParagraphB03class'>" + problemCaption_Array[6] + ".</p>\r\n" line03 = line03 + "<p class='problemEquationParagraphB03class'>" + problemEquation_Array[6]+ "</p>\r\n" line03 = line03 + "<p class='problemAnswerSpaceParagraphB03class'><span class='answerColor'>" + problemAnswer_Array[6] +"</span></p>\r\n" //put line04 SIDE A of the worksheet answer key together line04 = "<p class='problemCaptionParagraphA04class'>" + problemCaption_Array[7] + ".</p>\r\n" line04 = line04 + "<p class='problemEquationParagraphA04class'>" + problemEquation_Array[7]+ "</p>\r\n" line04 = line04 + "<p class='problemAnswerSpaceParagraphA04class'><span class='answerColor'>" + problemAnswer_Array[7] +"</span></p>\r\n" //put line04 SIDE B of the worksheet answer key together line04 = line04 + "<p class='problemCaptionParagraphB04class'>" + problemCaption_Array[8] + ".</p>\r\n" line04 = line04 + "<p class='problemEquationParagraphB04class'>" + problemEquation_Array[8]+ "</p>\r\n" line04 = line04 + "<p class='problemAnswerSpaceParagraphB04class'><span class='answerColor'>" + problemAnswer_Array[8] +"</span></p>\r\n" //put line05 SIDE A of the worksheet answer key together line05 = "<p class='problemCaptionParagraphA05class'>" + problemCaption_Array[9] + ".</p>\r\n" line05 = line05 + "<p class='problemEquationParagraphA05class'>" + problemEquation_Array[9]+ "</p>\r\n" line05 = line05 + "<p class='problemAnswerSpaceParagraphA05class'><span class='answerColor'>" + problemAnswer_Array[9] +"</span></p>\r\n" //put line04 SIDE B of the worksheet answer key together line05 = line05 + "<p class='problemCaptionParagraphB05class'>" + problemCaption_Array[10] + ".</p>\r\n" line05 = line05 + "<p class='problemEquationParagraphB05class'>" + problemEquation_Array[10]+ "</p>\r\n" line05 = line05 + "<p class='problemAnswerSpaceParagraphB05class'><span class='answerColor'>" + problemAnswer_Array[10] +"</span></p>\r\n" //write line 01 - line05 to the worksheet fractionWorksheet.html twoStepEquationsAnswerKeyWindow.document.write(line01) twoStepEquationsAnswerKeyWindow.document.write(line02) twoStepEquationsAnswerKeyWindow.document.write(line03) twoStepEquationsAnswerKeyWindow.document.write(line04) twoStepEquationsAnswerKeyWindow.document.write(line05) //write bottomOfPageParagraph twoStepEquationsAnswerKeyWindow.document.write("<p class ='bottomOfPageClass'>" + theDateAndTimeNow + " " +"ANSWER KEY" + " </p>") // End of block **************** for creating, opening, and writing to the answer key page************************************************ // End of block **************** for creating, opening, and writing to the answer key page************************************************ // End of block **************** for creating, opening, and writing to the answer key page************************************************ // End of block **************** for creating, opening, and writing to the answer key page************************************************ }//end function writeTheAnswerKey() </script> </head> <body id="theBody"> <br><br> <div class="centerThis"> <p class="pageHeading"> Solve One Step Inequalities Using <br> &nbsp; + &nbsp; - &nbsp; " &nbsp; / </p> </div> <h1> <span id="problem counter"> Problem # 1</span> </h1> <p id = "buttonsParagraph"> <input type = "button" value = "Make an inequality" onclick="makeEquation()"> <input type = "button" value = "Answer" onclick="showAnswer()"> <input type = "button" value = "clear problem" onclick = "clearProblem()"> <input type = "button" value = "make worksheet" onclick="makeOneStepInequalityWorksheetAndAnswerKey()"> </p> <p class="instructions"> When solving inequalities: <br>If you multiply both sides by a negative number <br> or divide both sides by a negative number <br> CHANGE THE DIRECTION OF THE INEQUALITY OPERATOR. </p> <br><br> <p id="problemParagraph" class = "problem"> <span id="coefficientPosition">&nbsp; </span> <span id="variablePosition">&nbsp; </span> <span id="numRightPosition">&nbsp; </span> </p> <p id="answerParagraph" class="problemParagraphAnswer"> <span id="answerParagraphAnswerSpan" class="answerColor"></span> </p> <p id = "hintForSolving" class = "hint"> &nbsp; <span id="highlight01" class="highlight">&nbsp;</span> &nbsp; <span id="num01">&nbsp;</span> &nbsp; <span id="num02">&nbsp;</span> </p> <script type="text/javascript"> //clear the hint paragraph to start - this is necessary because the original paragraph highlights the &nbsp; character. eraseProblemParagraph()//clear document of any writing </script> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> </body> </html>
Site hosted by Angelfire.com: Build your free website today!