File:Bernoulli inequality.png

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
Source: Wikipedia, the free encyclopedia.

Original file(556 × 1,056 pixels, file size: 28 KB, MIME type: image/png)

Description Illustration of Bernoulli's inequality.
Date (UTC)
Source self-made with MATLAB
Author Oleg Alexandrov
Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

Source code (MATLAB)

% Illustration of the bernoulli inequality

function main()

   r = 3; % the power in the Bernoulli inequality
   
   % KSmrq's colors
   red    = [0.867 0.06 0.14];
   blue   = [0, 129, 205]/256;
   green  = [0, 200,  70]/256;
   yellow = [254, 194,   0]/256;
   white = 0.99*[1, 1, 1];

% Set up the grid and other parameters
   N = 100;
   A = -2; B = 2; 
   X = linspace(A, B, N);
   Y1 = 1+r*X;
   Y2 = (1+X).^r;

   C=-3; D = 5;
   
   % Set up the figure
   lw = 3; % linewidth
   fs = 12; % font size
   figure(1); clf;

   set(gca, 'fontsize', fs);
   set(gca, 'linewidth', 0.4*lw)
   hold on;% grid on;
   
   plot_axes (A, B, C, D, lw/1.5);
   
   plot(X, Y1, 'color', blue, 'linewidth', lw);
   plot(X, Y2,   'color', red, 'linewidth', lw);
   
   axis equal; axis([A, B, C, D]); 

   set(gca, 'XTick', [-2, -1, 0, 1, 2]) % text labels on the x axis
   grid on;
   
   saveas(gcf, 'Bernoulli_inequality.eps', 'psc2'); % save as eps
   %plot2svg('Bernoulli_inequality.svg'); % save as svg
   
function plot_axes (A, B, C, D, lw)
   
   black = [0, 0, 0];

   plot([A B], [0, 0], 'linewidth', lw, 'color', black);
   plot([0, 0], [C, D], 'linewidth', lw, 'color', black);

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

image/png

f8b6b20cdd1731f509ba6470b59e5589f91d341b

28,690 byte

1,056 pixel

556 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current19:24, 6 January 2008Thumbnail for version as of 19:24, 6 January 2008556 × 1,056 (28 KB)Oleg Alexandrovtweak
04:39, 6 January 2008Thumbnail for version as of 04:39, 6 January 2008556 × 1,056 (25 KB)Oleg AlexandrovTweak
04:28, 6 January 2008Thumbnail for version as of 04:28, 6 January 2008556 × 1,056 (25 KB)Oleg Alexandrov{{Information |Description=Illustration of Bernoulli's inequality. |Source=self-made with MATLAB |Date=~~~~~ |Author= Oleg Alexandrov |Permission= |other_versions= }} {{PD-self}} ==Source code ([[:
No pages on the English Wikipedia use this file (pages on other projects are not listed).