answersLogoWhite

0

Add your answer:

Earn +20 pts
Q: When Joanne checked her work by substituting the value of the variable back into the equation she got an answer of 12.34 equals 12.33 Explain why Joanne could have gotten the answer correct even tho?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

When an equation includes a term with a variable denominator what additional reason requires that the solutions be checked?

You need to be sure the variable denominator does not become zero, where the equation would not be defined.


How can you draw a flow chart that prints name five times?

The idea is to have some variable as a counter, which starts at 1, is incremented by 1 in each round, and checked to see whether it is more than the desired number of repetitions.


Explain four of the stages in problem solving?

1 Identify the problem 2 Simplify the problem whenever possible 3 Work out the problem 4 Problem solved when checked out satisfactory


Write a C program To check whether given number is a prime number or not?

The brute force way would be to iterate through all the integers smaller than the sought number and check the number is divisible by each of them. However this algorithm is extremely inefficient, but improving upon the simple idea, we can come up with an algorithm: #include <stdio.h> #include <stdlib.h> #include <math.h> /* * */ int main(int argc, char** argv) { int checked = 72; //put your number that you want to check int temp = 2; //the temporary variable to check against char isPrime = 1; //intially assume it is prime if (checked != 1 checked != 2) { while (temp <= sqrt((double) checked)) { //only have to check up to the square root of checked if (checked % temp 0) { temp += 1; //only have to check odd numbers } else { temp += 2; } } } if (isPrime) { printf("Checked is prime!\n"); } else { printf("Checked is not prime!\n"); } return (EXIT_SUCCESS); } or a better edited version here: http://img689.imageshack.us/img689/8164/primecodec.png


10x plus 9y equals 4 and -6x plus 4y equals -5?

Multiply first equation by 3 and second equation by 5:30x + 27y = 12, -30x + 20y = -25; add these two:47y = -13, making y = -13/47 and x = -61/94I have checked these values against the original equations and they satisfy both. Weird solution tho'!

Related questions

When an equation includes a term with a variable denominator what additional reason requires that the solutions be checked?

You need to be sure the variable denominator does not become zero, where the equation would not be defined.


How can an inequality be checked?

By replacing a number for the variable.


What is the specific way in which variables will be observed and measured in an experiment?

One variable will be included, then the effect checked, then the next variable inserted, et al


Which reference to the plate tectonics theory explain how folding occurs?

raising mountains, and i checked .


Why is control up being done in the conduct of an experiment?

An experiment usually involves a set of steps involving one variable. This is what is being tested. A control involves the same steps without the one variable. The results are checked against each other to see if the variable had any effect.


WHY is a control setup being done in the conduct of an experiment?

An experiment usually involves a set of steps involving one variable. This is what is being tested. A control involves the same steps without the one variable. The results are checked against each other to see if the variable had any effect.


Why is a control set up being done in conducting an experiment?

An experiment usually involves a set of steps involving one variable. This is what is being tested. A control involves the same steps without the one variable. The results are checked against each other to see if the variable had any effect.


Why is a control set up being done in the conduct of an experiment?

An experiment usually involves a set of steps involving one variable. This is what is being tested. A control involves the same steps without the one variable. The results are checked against each other to see if the variable had any effect.


Why is control set up being done in conduct of an experiment?

An experiment usually involves a set of steps involving one variable. This is what is being tested. A control involves the same steps without the one variable. The results are checked against each other to see if the variable had any effect.


What is variable presentation in pregnancy?

Baby position keeps on changing while doing scanning is called "Variable presentation"..I have checked this with doctor and she said it is not a problem in 5th month as sufficient time is there for the baby to change its position for normal delivery.. K.Veeramani from India..


What is path variable in unix?

It is special variable that has a lit of directories there all our applications are located. In other to find out this PATH variable in UNIX type operating system use env command and look for PATH variable in ENVIRONMENT variables list or use bash line: echo $PATH this will return only $PATH variable.For example my PATH variable is:/Users/david/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/binWhen you will try to launch a program by writing it's name in console all those directories you see in PATH variable will be checked for that application.


What are the Error occurs when no checkbox is checked in PHP?

Suppose you have checkbox in HTML from and and you are calling that checkbox by name in php , In that case in you don't check and hit submit , You will get Undefined parameter 'name_of _checkbox' As Error.