ÿþ<html> <head> <title>twoStepInequalities.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 caption = " "//caption showing problem counter value var counter=1 //problem counter var equationPattern var equationString var equationPattern var PMOperator //plus minus operator //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() 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 makeNas()//make the number to add or subtract Nas. //pick a random number, but don't keep zero as Nas { Nas = Math.floor(Math.random()*25 - 12) if(Nas==0)//try agian if Nas is zero, don't use a value of zero here. { makeNas() } } //Cf is a capitol C small f function makeCf()//make coefficient, pick a random number but don't keep zero as Cf. { Cf = Math.floor(Math.random()*33 - 16) //Cf = Math.floor(Math.random()*3 - 1) if(Cf==0) { makeCf()//try again if Cf is zero, don't use a value of zero here either. } } function makeMp()//make the multiplier Mp (used to multiply the coefficient //which is part of the process to make Cs.) Pick a random number. { Mp = Math.floor(Math.random()*16 + 1) } function makeCs()//make the constant Cs (that goes on the answer side of the equation). { Cs = Cf * Mp + Nas } 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 makeEquationParts()//make the parts of the equation to be solved. { makeNas()//make the number to add or subtract Nas. makeCf()//make coefficient. makeMp()//make the multiplier Mp. makeCs()//make the constant Cs (that goes on the answer side of the equation). makeVariable()//make the variable for the equation. makeInequalityOperator() } function createEquation()//puts the parts of the equation string together to write later. { //which pattern should used to print the equation? equationPattern = Math.floor(Math.random()*12 + 1) if(equationPattern == 1) { //left hand side has variable //variable term first if(Nas < 0) { equationString = Cf + variable + " - " + -1*Nas + " " + inequalityOperator + " " + Cs } if(Nas < 0 && Cf == -1) { equationString = "-" + variable + " - " + -1*Nas + " " + inequalityOperator + " " + Cs } if(Nas < 0 && Cf == 1) { equationString = variable + " - " + -1*Nas + " " + inequalityOperator + " " + Cs } if(Nas > 0) { equationString = Cf + variable + " + " + Nas + " " + inequalityOperator + " " + Cs } if(Nas > 0 && Cf == -1) { equationString = "-" + variable + " + " + Nas + " " + inequalityOperator + " " + Cs } if(Nas > 0 && Cf == 1) { equationString = variable + " + " + Nas + " " + inequalityOperator + " " + Cs } } if(equationPattern == 2) { //left hand side has variable //variable term second if(Cf < 0) { equationString = Nas + " - " + -1*Cf + variable + " " + inequalityOperator + " " + Cs } if(Cf == -1) { equationString = Nas + " - " + variable + " " + inequalityOperator + " " + Cs } if(Cf > 0) { equationString = Nas + " + " + Cf + variable + " " + inequalityOperator + " " + Cs } if(Cf == 1) { equationString = Nas + " + " + variable + " " + inequalityOperator + " " + Cs } } if(equationPattern == 3) { //right hand side has variable //variable term first if(Nas < 0) { equationString = Cs + " " + inequalityOperator + " " + Cf + variable + " - " + -1*Nas } if(Nas < 0 && Cf == -1) { equationString = Cs + " " + inequalityOperator + " " + "-" + variable + " - " + -1*Nas } if(Nas <0 && Cf == 1) { equationString = Cs + " " + inequalityOperator + " " + " " + variable + " - " + -1*Nas } if(Nas > 0) { equationString = Cs + " " + inequalityOperator + " " + Cf + variable + " + " + Nas } if(Nas > 0 && Cf == -1) { equationString = Cs + " " + inequalityOperator + " " +"-" + variable + " + " + Nas } if(Nas > 0 && Cf == 1) { equationString = Cs + " " + inequalityOperator + " " + variable + " + " + Nas } } if(equationPattern == 4) { //right hand side has variable //variable term second if(Cf < 0) { equationString = Cs + " " + inequalityOperator + " " + Nas + " - " + -1*Cf + variable } if(Cf == -1) { equationString = Cs + " " + inequalityOperator + " " + Nas + " - " + variable } if(Cf > 0) { equationString = Cs + " " + inequalityOperator + " " + Nas + " + " + Cf + variable } if(Cf == 1) { equationString = Cs + " " + inequalityOperator + " " + Nas + " + " + variable } } if(equationPattern == 5) { //left hand side has variable. //variable term first, variable divided by Cf. //If Cf is negative put Cf in parenthesis. Cs = Math.floor(Math.random()*16 + 1) CfImage = Cf if(Cf < 0 ) { CfImage="(" + Cf + ")" } NasImage=Nas PMOperator="+" if(Nas < 0) { NasImage=-1*Nas PMOperator="-" } equationString = variable + "/" + CfImage + " " + PMOperator + " " + NasImage + " " + inequalityOperator + " " + Cs }//end if equationPattern == 5 if(equationPattern == 6) { //left hand side has variable. //variable term first, variable divided by Cf. //If Cf is negative make the sign in front of the quotient negative and show Cf as a positive number. Cs = Math.floor(Math.random()*16 + 1) sign ="" CfImage = Cf if(Cf < 0 ) { CfImage = -1*Cf sign = "-" } NasImage=Nas PMOperator="+" if(Nas < 0) { NasImage=-1*Nas PMOperator="-" } equationString = sign + variable + "/" + CfImage + " " + PMOperator + " " + NasImage + " " + inequalityOperator + " " + Cs }//end if equationPattern == 6 if(equationPattern == 7) { //left hand side has variable. //variable term second, variable divided by Cf. //If Cf is negative put Cf in parenthesis. Cs = Math.floor(Math.random()*16 + 1) NasImage=Nas PMOperator="+" CfImage = Cf if(Cf < 0 ) { CfImage= "(" + Cf + ")" } equationString = Nas + " " + PMOperator + " " + variable + "/" + CfImage + " " + inequalityOperator + " " + Cs }//end if equationPattern == 7 if(equationPattern == 8) { //left hand side has variable. //variable term second, variable divided by Cf. //If Cf is negative make the sign in front of the quotient negative and show Cf as a positive number. Cs = Math.floor(Math.random()*16 + 1) NasImage=Nas PMOperator="+" CfImage = Cf if(Cf < 0 ) { CfImage= -1*Cf PMOperator = "-" } equationString = Nas + " " + PMOperator + " " + variable + "/" + CfImage + " " + inequalityOperator + " " + Cs }//end if equationPattern == 8 if(equationPattern == 9) { //right hand side has variable. //variable term first, variable divided by Cf. //If Cf is negative put Cf in parenthesis. Cs = Math.floor(Math.random()*16 + 1) NasImage=Nas PMOperator="+" if(Nas < 0) { NasImage = -1*Nas PMOperator = "-" } CfImage = Cf if(Cf < 0 ) { CfImage= "(" + Cf +")" } equationString = Cs + " " + inequalityOperator + " " + variable + "/" +CfImage + " " + PMOperator + " " + NasImage }//end if equationPattern == 9 if(equationPattern == 10) { //right hand side has variable. //variable term first, variable divided by Cf. //If Cf is negative make the sign in front of the quotient negative and show Cf as a positive number. Cs = Math.floor(Math.random()*16 + 1) sign ="" NasImage=Nas PMOperator="+" if(Nas < 0) { NasImage = -1*Nas PMOperator = "-" } CfImage = Cf if(Cf < 0 ) { CfImage= -1*Cf sign = "-" } equationString = Cs + " " + inequalityOperator + " " + sign + variable + "/" +CfImage + " " + PMOperator + " " + NasImage }//end if equationPattern == 10 if(equationPattern == 11) { //right hand side has variable. //variable term second, variable divided by Cf. //If Cf is negative put Cf in parenthesis. Cs = Math.floor(Math.random()*16 + 1) NasImage=Nas PMOperator="+" CfImage = Cf if(Cf < 0) { CfImage = "(" + Cf + ")" } equationString = Cs + " " + inequalityOperator + " " + NasImage + " " + PMOperator + " " + variable + "/" + CfImage }//end if equationPattern == 11 if(equationPattern == 12) { //right hand side has variable. //variable term second, variable divided by Cf. //If Cf is negative make the sign in front of the quotient negative and show Cf as a positive number. Cs = Math.floor(Math.random()*16 + 1) NasImage=Nas PMOperator="+" CfImage = Cf if(Cf < 0) { CfImage = -1*Cf PMOperator="-" } equationString = Cs + " " + inequalityOperator + " " + NasImage + " " + PMOperator + " " + variable + "/" + CfImage }//end if equationPattern == 1 }//end of function createEquation() function calculateAnswer() { answer = (Cs-Nas)/Cf if(equationPattern >= 5 && equationPattern <= 12 ) { answer = (Cs-Nas)*Cf } } function newProblem() { makeEquationParts() createEquation() calculateAnswer() writeEquationToPage() } function writeEquationToPage() { newParagraph = document.createElement("p") newText = document.createTextNode(equationString) newParagraph.appendChild(newText) newSpan = document.createElement("span") newText = document.createTextNode("") newSpan.appendChild(newText) newSpan.id="answerSpot" //newSpan.style.color = "rgb( 153, 0, 255 )" newSpan.className = "answerColor" newParagraph.appendChild(newSpan) oldParagraph = problemParagraph document.getElementById("theBody").replaceChild(newParagraph, oldParagraph) newParagraph.id="problemParagraph" newParagraph.className = "problem" caption = counter document.getElementById("problem counter").childNodes[0].nodeValue = "Problem # " +caption counter = counter + 1 // the number of the next problem to make. } function eraseWebPage() { newParagraph = document.createElement("p") oldParagraph = problemParagraph document.getElementById("theBody").replaceChild(newParagraph, oldParagraph) newParagraph.id="problemParagraph" newParagraph.className = "problem" } function showAnswer01()//THIS ONE IS NOT USED ANYMORE { if(caption == " ") {//do nothing, no problem has been generated yet. alert("Press the 'Make equation' button to start") } else { answerString = " " + variable + " = " + answer //document.getElementById("answerSpot").childNodes[0].nodeValue = answerString //the line above can be used or the line below can be used, they both do the same thing. answerSpot.childNodes[0].nodeValue=answerString } } function showAnswer2() { if(caption == " ") {//do nothing, no problem has been generated yet. alert("Press the 'Make equation' button to start") } else //begin else 1 { if(Cf<0) switchIOpDirection() //change the direction of the inequality operator if necessary to multiply or divide both sides by a negative number when solving. if(equationPattern == 1 || equationPattern == 2 || equationPattern == 5 || equationPattern == 6 || equationPattern == 7 || equationPattern == 8 ) { // the variable is on the left hand side of the inequality. answerString = " " + variable + " " + inequalityOperator + " " + answer //document.getElementById("answerSpot").childNodes[0].nodeValue = answerString //the line above can be used or the line below can be used, they both do the same thing. answerSpot.childNodes[0].nodeValue=answerString } else //begin else 2 { //the variable is on the right hand side of the inequality. answerString = " " + answer + " " + inequalityOperator + " " + variable answerSpot.childNodes[0].nodeValue=answerString }//end else 2 }//end else 1 }//end function showAnswer() function showAnswer() { if(caption == " ") {//do nothing, no problem has been generated yet. alert("Press the 'Make equation' button to start") } else { createAnswerString() answerSpot.childNodes[0].nodeValue=answerString } }//end function showAnswer() function createAnswerString() { if(Cf<0) switchIOpDirection() //change the direction of the inequality operator if necessary to multiply or divide both sides // by a negative number when solving. if(equationPattern == 1 || equationPattern == 2 || equationPattern == 5 || equationPattern == 6 || equationPattern == 7 || equationPattern == 8 ) { // the variable is on the left hand side of the inequality. answerString = " " + variable + " " + inequalityOperator + " " + answer } else { //the variable is on the right hand side of the inequality. answerString = " " + answer + " " + inequalityOperator + " " + variable } }//end function createAnswerString() function makeTwoStepEquationWorksheetAndAnswerKey() { //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 { newProblem() calculateAnswer() createAnswerString() problemCaption_Array[i] = caption problemEquation_Array[i] = equationString problemAnswer_Array[i] = answerString } theDateAndTimeNow = new Date() writeTheWorksheet() writeTheAnswerKey() //clear the problem and whatever else is on the web page so the page is blank eraseWebPage() //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 makeTwoStepEquationWorksheetAndAnswerKey() 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<body id='theBawd'>\r\n\r\n<p>\r\n" newContent += "\r\n <br>\r\n</p>" newContent += "\r\n</b" + "ody>\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">Two Step Inequalities</p> </div> <h1> <span id="problem counter"> Problem # 1</span> </h1> <p class="instructions"> 1. Undo addition and subtraction to the variable term. <br>2. Undo multiplication and division to the varaible. <br>3. If you multiplied or divided both sides by a negative number <br> CHANGE THE DIRECTION OF THE INEQUALITY OPERATOR. </P> <input type="button" value="Make Inequality" onclick="newProblem()"> &nbsp;&nbsp;&nbsp;&nbsp; <input type="button" value="Show Answer" onclick= "showAnswer()"> &nbsp;&nbsp;&nbsp;&nbsp; <input type = "button" value= "make worksheet" onclick="makeTwoStepEquationWorksheetAndAnswerKey()"> <p id="problemParagraph"; class="problem">&nbsp; <span id="answerSpot">&nbsp;</span> </p> <br><br><br><br> </body> </html>
Site hosted by Angelfire.com: Build your free website today!