Answer on Question #50276 – Engineering
Please explain the graph for ?
Answer:
The graph of is upward-sloping, and increases faster as increases. The graph always lies above the -axis but can get arbitrarily close to it for negative ; thus, the -axis is a horizontal asymptote. The slope of the tangent to the graph at each point is equal to its coordinate at that point
Graphs of Exponential Functions
The graph passes through the point
The domain is all real numbers
The range is
The graph is increasing
- The graph is asymptotic to the x-axis as x approaches negative infinity
- The graph increases without bound as x approaches positive infinity
- The graph is continuous
- The graph is smooth
MATLAB CODE:
clc,close all,clear all
figure
x=-20:0.1:5
y=exp(x)
xlim([-10 10]),ylim([0 100])
plot(x,y,'o--')
axis equal,grid on
xlabel('x'),ylabel('y')
legend('y=exp(x)')
figure
x=-1:0.1:1.5
y=exp(x)
xlim([-1 1.5]),ylim([0 100])
plot(x,y,'o--')
axis equal,grid on
xlabel('x'),ylabel('y')
legend('y=exp(x)')www.assignmentexpert.com
Comments