Express your answer as a mixed number simplified to lowest terms.
expr(["+", W1 + fraction( N1, D1 ), W2 + fraction( N2, D2 )]) = {?}
Separate the whole numbers from the fractional parts:
= \blue{W1} + \blue{fraction( N1, D1 )} SIGN \pink{abs( W2 )} SIGN \pink{fraction( N2, D2 )}
Bring the whole numbers together and the fractions together:
= \blue{W1} SIGN \pink{abs( W2 )} + \blue{fraction( N1, D1 )} SIGN \pink{fraction( N2, D2 )}
AddSubtract the whole numbers:
=W1 + W2 + \blue{fraction( N1, D1 )} SIGN \pink{fraction( N2, D2 )}
Simplify each fraction:
= W1+W2 + \blue{fraction( SIMP_N1, SIMP_D1 )} SIGN \pink{fraction( SIMP_N2, SIMP_D2 )}
Find a common denominator for the fractions:
= expr(["+", W1 + W2, fraction( SIMP_N1 * LCM / SIMP_D1, LCM ),fraction( PM * SIMP_N2 * LCM / SIMP_D2, LCM )])
AddSubtract the fractions:
= expr(["+", W1 + W2, fraction( SIMP_N1 * LCM / SIMP_D1 + PM * SIMP_N2 * LCM / SIMP_D2, LCM )])
Combine the whole and fractional parts into a mixed number:
= W1 + W2 + fraction( SIMP_N1 * LCM / SIMP_D1 + PM * SIMP_N2 * LCM / SIMP_D2, LCM )
Simplify to lowest terms:
= W1 + W2 + fractionReduce( SIMP_N1 * LCM / SIMP_D1 + PM * SIMP_N2 * LCM / SIMP_D2, LCM )
Express your answer as a mixed number simplified to lowest terms.
expr(["+", W1 + 1 + fraction( N1, D1 ), W2 + fraction( N2, D2 )]) = {?}
Simplify each fraction.
= \blue{W1 + 1fraction( SIMP_N1, SIMP_D1 )} SIGN \pink{abs( W2 )fraction( SIMP_N2, SIMP_D2 )}
Find a common denominator for the fractions:
= \blue{W1 + 1fraction( SIMP_N1 * LCM / SIMP_D1, LCM )}SIGN\pink{abs( W2 )fraction( SIMP_N2 * LCM / SIMP_D2, LCM )}
Convert \blue{W1 + 1fraction( SIMP_N1 * LCM / SIMP_D1, LCM)} to \blue{ W1 + fraction( LCM, LCM) + fraction( SIMP_N1 * LCM / SIMP_D1, LCM)}.
So the problem becomes:
\blue{W1fraction( LCM + SIMP_N1 * LCM / SIMP_D1, LCM)}SIGN\pink{abs( W2 )fraction( SIMP_N2 * LCM / SIMP_D2, LCM)}
Separate the whole numbers from the fractional parts:
= \blue{W1} + \blue{fraction( LCM + SIMP_N1 * LCM / SIMP_D1, LCM )} SIGN \pink{abs( W2 )} SIGN \pink{fraction( SIMP_N2 * LCM / SIMP_D2, LCM)}
Bring the whole numbers together and the fractions together:
= \blue{W1} SIGN \pink{abs( W2 )} + \blue{fraction( LCM + SIMP_N1 * LCM / SIMP_D1, LCM )} SIGN \pink{fraction( SIMP_N2 * LCM / SIMP_D2, LCM )}
AddSubtract the whole numbers:
=W1 + W2 + \blue{fraction( LCM + SIMP_N1 * LCM / SIMP_D1, LCM )} SIGN \pink{fraction( SIMP_N2 * LCM / SIMP_D2, LCM)}
AddSubtract the fractions:
= expr(["+", W1 + W2, fraction( (LCM + SIMP_N1 * LCM / SIMP_D1) + (PM * SIMP_N2 * LCM / SIMP_D2), LCM )])
Combine the whole and fractional parts into a mixed number:
= W1 + W2 + fraction( (LCM + SIMP_N1 * LCM / SIMP_D1) + PM * SIMP_N2 * LCM / SIMP_D2, LCM )
Simplify to lowest terms:
= W1 + W2 + fractionReduce( (LCM + SIMP_N1 * LCM / SIMP_D1) + PM * SIMP_N2 * LCM / SIMP_D2, LCM )