clear;
e = exp( 1 );
step = (e-0)/100;
x = step:step:200*step;
n = 10:10:200;
M = size( n , 2 );
for i = 1 : M
y = log( power( e , n( i ) ) + power( x , n( i ) ) ) ./ n( i );
plot( x , y );
hold on;
end
y_limit = log( x );
plot( x , y_limit , 'r-' );
grid on;
hold on;