Given a=22017,b=32017,c=42017,d=52017, and let x=(a+b)(c+d),y=(a+c)(b+d),z=(a+d)(b+c). Rank x,y,z from greatest to least, and express your answer as an ordered list.
x=(2^2017+3^2017)*(4^2017+5^2017);print x;y=(2^2017+4^2017)*(3^2017+5^2017);printy;z=(2^2017+5^2017)*(3^2017+4^2017);printz
y = 1.504877865 E+2624 z = 1.504877865 E+2624
x = 1.499924902 E+2372
Note: y and z are equivalent. You may arrange them the way they want.
I get the following: