Brian Z. answered 10/10/19
Hi
The best and easy way is to pass through decimal and readable system, so we convert 3424 base 5 to base 10:
34245=(4*(50)+2*(51) +4*(52) +3*(53))10
=(4+10+4*25+3*125)10
=(4+10+100+375)10
=48910
Then we will transform 48910 from base 10 to base 6, to do so we will make successive euclidean division by 6 as fellow:
step 1: 489//6 give 81 and 3 remainder
step 2: 81//6 give 13 and 3 remainder
step 1: 13//6 give 2 and 1 remainder
so from step 1 48910=3+(81*6) we replace 81 with it's value from step 2
we get: 48910=3+(((13*6)+3)*6) we replace 13 with it's value from step 3
we get 48910=3+((((2*6)+1)*6)+3)*6) the expression now contains only the power of 6 and remainders<=6
so we can develop it to 48910=3*60 + 3*61 + 62 + 2*63
finally 48910=21336
I hope that you appreciate Good Luck