Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Very nice video, extremely helpful in understanding the background processes behind lambda recursion. Please do make more videos like this that address lambda recursion with mathematical examples like this.
Thank you for the nice video
Improper Fraction to Mixed Fraction LAMBDALAMBDA below should work on OFFICE 365 and GOOGLE Sheets.=LAMBDA(inumerator, idivisor, if( idivisor = 0, "Error divisor is Zero", let( _100,"Improper fraction to Mixed Fraction Calculator", whole_part_l, lambda( num, F_LL , if( num < idivisor, 0, F_LL(num-idivisor,F_LL)+1 ) ), remainder_part_l, lambda( num, F_LL , if( num < idivisor, num, F_LL(num-idivisor,F_LL) ) ), result, inumerator &"/"& idivisor &" = "& whole_part_l( inumerator, whole_part_l) & " + " & remainder_part_l( inumerator, remainder_part_l) & "/"& idivisor, result ) ) )(109,10)
Very nice video, extremely helpful in understanding the background processes behind lambda recursion. Please do make more videos like this that address lambda recursion with mathematical examples like this.
Thank you for the nice video
Improper Fraction to Mixed Fraction LAMBDA
LAMBDA below should work on OFFICE 365 and GOOGLE Sheets.
=LAMBDA(inumerator, idivisor,
if( idivisor = 0, "Error divisor is Zero",
let(
_100,"Improper fraction to Mixed Fraction Calculator",
whole_part_l,
lambda( num, F_LL , if( num < idivisor, 0, F_LL(num-idivisor,F_LL)+1 ) ),
remainder_part_l,
lambda( num, F_LL , if( num < idivisor, num, F_LL(num-idivisor,F_LL) ) ),
result, inumerator &"/"& idivisor &" = "&
whole_part_l( inumerator, whole_part_l) & " + " &
remainder_part_l( inumerator, remainder_part_l) & "/"& idivisor,
result
)
)
)(109,10)