answersLogoWhite

0

What else can I help you with?

Related Questions

How do you find the decimal in a fraction?

Divide the nominator by the denominator.


Is this the nominator on top or bottom of a fraction?

There is no such term as the nominator. The numerator goes on top and the denominator on the bottom.


What is the simplest reduction of the fraction 4over 32?

Divide the top and bottom (nominator and denominator) by the largest number they both can be divided by. In this case 4/32 divide the nominator and denominator by 4. This equals 1/8.


What is the other name for numerator and denominator?

"The numerator and denominator are known as the fraction bar.”


How can you change a fraction to a like fraction?

Multiply or divide both the nominator and denominator. For example your fraction is 1/2: you could: multiply by 2 and get 2/4 which is equal.


How would you use the multiplication rule to find common denominators?

multiply the nominator and denominator of each fraction by the denominator of the other fraction


What do you do if you want to double a fraction?

To double a fraction double the numerator and keep the denominator unchanged.


Convert a regular fraction into a improper fraction?

To convert a proper fraction to an improper fraction you multiply the whole number by the denominator plus the nominator and put your answer in your nominator spot over your same denominator. EXAMPLE:7 and a half converted into a improper fraction would be 15 over 2.


What is A fraction as a fraction in the numerator and nominator or both?

That's a complex fraction.


What is nominator and denominator?

In a fraction, the numerator represent the part out of the denominator which represents the total. Neither need be rational (or even real).


how to get the answer when you need to multiply fractions?

Butterfly or cross multiply method the nominator of the first fraction times the denominator of the second and vise versa.


What are structures C programming?

Presuming you mean: "What are structures in C (programming)" (Data) Structures are a simple way to organize information. Example: Suppose you want to make a program that does arithmetic operations on fractions. Since each fraction can be represented by a nominator and a denominator for each fraction you have you need two integers (or other numeric variable type), the solution with no structs would be to create two arrays , one for the nominators and the other for the denominators: int nominators[10]; int denominators[10]; The problem with this approach is that it is prone to programmer errors the relation between nominators and denominators is not enforced. By using structs one could enforce the relation of a nominator with its denominator: struct Fraction { int nominator; int denominator; }; This is a struct definition, it defines a new variable type that consists of two int variables named nominator and denominator. So now you can write this: struct Fraction fractions[10]; This makes it simpler for the programmer to handle the data. Structs are declared as any other variable type: struct Fraction fraction; //The keyword struct is necessary In order to get a struct's inner variables (members is the usual term) you must use the '.'(full-stop) operator as such: fraction.nominator = 0; //This will set the nominator member to 0 The initialization of a struct a bit awkward at first: struct Fraction fraction = {1,2}; This will initialize the nominator member of the variable fraction to 1 and the denominator member to 2. Hope this solves your query.


When there is a group of fractions how do you find the one with the least value?

The fraction with the greatest denominator and the greatest difference between nominator and denominator (number above and below the dividing line) has the lowers absolute value (is closest to zero).


How can you tell if two fractions are equivalent?

Two fractions are equivalent if the fully simplified fractions are equal. If you can multiply the fraction with the smaller numerator and denominator by the same value to equal the second fraction. For example the fractions 3/4 and 9/12. The nominator and denominator, 3 and 4 have both been multiplied by 3 to equal 9/12. Cross multiply. If the products are equal, the fractions are equal. Cross multiplying means to multiply each numerator of one fraction with the denominator of the other fraction.


What is the definition of nominator in a fraction?

I can't tell if you're asking about the numerator or the denominator.The numerator is the number on top, being divided into.The denominator is the number on bottom, dividing the numerator.


How many fractions are equavilent to one-forth?

Infinite! multiply both the nominator(top number) and the denominator(bottom number) by the same number to get a different fraction which is equal example: multiply 1 and 4 by 2 to get 2/8 which is equivalent. you can multiply them by in


Why doesnt the denominator indicate how large the fraction is?

Because a fraction is defined by both, the numerator and the denominator.


What are the kinds of fraction and give the meaning?

nominator and dinominator


What does the fraction become if the numerator and denominator of a fraction are both decreased by three?

The fraction becomes smaller: provided the denominator was positive.


What equivalent fraction with a denominator?

To find an equivalent fraction with a specific denominator, you multiply both the numerator and denominator of the original fraction by the same number. For example, if you have the fraction 1/2 and want an equivalent fraction with a denominator of 8, you would multiply both the numerator and denominator by 4, resulting in 4/8. This process maintains the value of the fraction while changing its form.