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 )}
AddSubtract the fractions:
= expr(["+", W1 + W2, fraction( N1 + PM * N2, D2 )])
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 )