answersLogoWhite

0


Best Answer

To convert a mixed number to an improper fraction, multiply the denominator by the whole number, add that total to the numerator and put the whole thing over the original denominator.

7 and 1/3 = 22/3

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you change a mixed number into an improper num?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you convert a fraction into a mixed number?

To change a fraction into a mixed number, divide the numerator (top number) by the denominator (bottom number) to get the whole number. The remainder is the new numerator and gets written over the same denominator. Your welcome! and for imformation go to www.confused.com xxx LOL by Anymonus


Multiply mixed numbers?

First, change the mixed numbers into improper fractions. Like, 3 and 1/2 would be 7/2. Then, multiply it with another improper fraction. We'll say 5/4. So to get the new numerator you would go 5*7=35. Then, for the denominator, you would go 2*4=8. So your answer would be 35/8, or 4 and 3/8.


What is 27-12 as a mixed num?

27-12 as a mixed num = 15


What is 477 divided by 16 as a mixed num?

29.8125


What is c program to convert decimal number to binary number?

#include<stdio.h> #include<conio.h> void main() { int bin[20]; int i=0,num; printf("Enter the number :"); scanf("%d",&num); while(num!=1) { bin[i]=num%2; i++; num=num/2; } bin[i]=num; for(;i>=0;i--) printf("%d",bin[i]); getch(); }


Mark the stress on the word number?

NUM-ber The stress is on NUM.


How do you create a string and reverse a string in visual basic?

Dim x As String x = "HELLO" Dim tmpString As String tmpString = Nothing For j = 0 To x.Length - 1 Dim int int=x.Length - 1 int=int-j tmpString=x(j) Next


How do you convert a number into a degree circle?

In simple Python code: def convertToAngle(num): while True: if num < 0: num = 360 - num elif num > 360: num -= 360 else: break return num


Program to find reverse of given number using pointers?

#include #include void main() { int rev num=0; while(num>0) { rev num=rev num*10+num%10; num=num%10; } return rev_num; } int main(); { int num=4562; printf("reverse of number is%d",reverse digit(num)); getch(); return o; }


Write a C program to reverse the digits of a number?

/*Reverse the digits of a number,Gankidi*/ #include<stdio.h> void main(void) { int num,sum=0,i,rem; printf("Enter a number"); scanf("%d",&num); while(num>0) { rem=num%10; num=num/10; sum=sum+(rem*10); } printf("the reverse number is %d",sum); }


Sum of individual digits of number?

void main() { int num,r,sum=0; clrscr(); printf("enter the number\n"); scanf("%d",&num); while(num!=0) { r=num%10; sum=sum+r; num=num/10 } printf("The sum of individual digit of given number is=%d",sum); getch() }


How find input number is prime number in c plus plus?

#include#includebool is_prime (const unsigned num){if (num "Enter a natural number: ";unsigned num;std::cin