Ir al contenido principal

Matemática

1.


7.


8.




9.


10.


29.


30.


31.


32.


Un optimista ve una oportunidad en toda calamidad, un pesimista ve una calamidad en toda oportunidad.
        -- Winston Churchill. (1874-1965) Político inglés.



El pesimista sabe rebelarse contra el mal. Sólo el optimista sabe extrañarse del mal.
        -- Gilbert Chesterton. (1874-1936) Escritor británico.



Diferencial


y=x2, obtener: Ay, dy (x2: x elevado al cuadrado, Ay: delta y, dy: diferencial de y)
Ay = f(x+Ax) - f(x) =
= (x+Ax)2 - x2 =
= x2 + 2xAx + Ax2 - x2 =
= 2xAx + Ax2


dy = f'(x) dx =
= 2x Ax (*)


* Recordar:
x' = 1 (*2)
dx = x' Ax = Ax (*3)


*2 Recordar:
(1): lím Ax->0 Ax/Ax = x' (derivada de 1 variable con respecto a sí misma, toda variable está en función de sí misma x = f(x) / x = x)
(2): lím Ax->0 Ax/Ax = lím Ax->0 1 = 1
Por (1) y (2): x' = 1


*3 Recordar:
lím Ax->0 Ax/Ax = x'
Ax / Ax = x' + alfa / Ax -> 0 => alfa -> 0
Ax = x' Ax + alfa Ax
dx = x' Ax = Ax (diferencial de la variable independiente con respecto a sí misma, obviamente por ser independiente)



Integral

lím i → ∞ ∑ f(xi) ∆xi = ∆x lím i → ∞ ∑ f(xi) = ∫def.[a..b] f(x) ∆x, ∆x0 = ∆x1 = ... = ∆xi  = ∆x, i → ∞ <=> ∆x → 0



∫def.[a..b] f(x) ∆x = primitiva de f(b) - primitiva de f(a) = primitiva de f(b).g(z) - primitiva de f(a)


si primitiva de f(a) = 0:
∫def.[a..x] f(x) ∆x = primitiva de f(x) = primitiva de f(x). g(z) = ∫def.[a..x] f(x) ∆x.g(z) = ∫def.[a..x] f(x) dx


si no:
∫def.[a..x] f(x) ∆x = ∫def.[a..x] f(x) g(z1)-g(z0), g(z1)-g(z0)=∆x




si F(x) = x => dx = ∆x
si y=F(x) ^ x=G(z) => dx = f(x) . g(z) . ∆z
si no => dx = f(x) ∆x


primitiva de f(x) = primitiva de f(x).g(z)


Matemática, teoría de juegos, software libre


Positivism and Software Engineering

When Aristoteles stated his geocentric theory, the sustained theories were hard to explain without complex formulas describing weird trajectories about the other corps over the system.
About the same idea, Greek mechanics was largely accepted for describing accurately enough trajectories of objects near the grounth and above the heights. But it still miss something...

In my humilde opinion, the success key which lead Galileo and Newton theories superseed their ancestors was that these are based on postulates of equality among all the interveinig elements of analysis. In other words, each element being under analysis posseses undistinguishable properties over the others, and any of them hasn't special atributes and/or governementship over the others: The apple goes towards the Earth, and the Earth does the same towards the apple all simultaneously; A hunt walks it's way over the Earth's surface, and the Earth moves arround its centre as a reaction to the strength excerced by the hunt steps.

"Logic carries you from A to B, imagination everywhere", and "There's 1 thing more valuable than knowledge: imagination", are quotes from Einstein, this makes me question if the status we attribute to intelligence should be reevaluated.

I'm still wondering, what would Arquimedes have mean to say when he said "Give me a standpoint and I'll move the world".

Your post raised my interest up!



Comentarios

Entradas populares de este blog

Crear proyecto de frontend con Vite, React, Tailwind, Typescript y JSX

 ¿Cómo se crea un proyecto exclusivo de frontend con Vite, React, Tailwind, Typescript y JSX? ¡Absolutamente! Entiendo que quieres la guía completa para pasar de cero a tener un proyecto de frontend moderno, vacío y listo para ser llenado con tu código. A continuación, te proporciono un archivo de guía detallada que incluye todos los comandos necesarios para inicializar el proyecto, configurar Tailwind CSS, y los pasos clave para empezar a "poblarlo". Voy a generar un documento Markdown con la guía paso a paso, incluyendo los comandos de terminal y las modificaciones esenciales a los archivos de configuración. Guía: Creación de un Proyecto Frontend Puro (Vite, React, TypeScript, Tailwind) Este documento detalla el proceso para inicializar un proyecto de frontend vacío y optimizado, utilizando Vite como empaquetador, React como librería, TypeScript para tipado y Tailwind CSS para estilizado. 1. Inicialización del Proyecto con Vite Vite es la herramienta más rápida para emp...

Tokens V2

Tokens: Programme to discover tokens, where there are not. Now available at  https://puszcza.gnu.org.ua/projects/tokens/ This is Version 2, for  version 1, go here . Synopsis: use TokensV2; sub printFile; my @FORMAT = ( ['<Message Date=".*?" Time=".*?" DateTime=".*?" SessionID=".*?"><From>(?:<User FriendlyName=".*?"/>)+</From><To>(?:<User FriendlyName=".*?"/>)+</To><Text(?: Style=".*?")?>.*?</Text></Message>',   sub {     my $fh = $_[1];     my ($d, $t, $f, $s, $T) = $_[0] =~ m|<Message Date="(.*?)" Time="(.*?)" DateTime=".*?" SessionID=".*?">(<From>(?:<User FriendlyName=".*?"/>)+</From>)<To>(?:<User FriendlyName=".*?"/>)+</To><Text(?: Style="(.*?)")?>(.*?)</Text></Message>|;     my $F = join '<br />', ...

Perl Net::LDAP::SimpleServer

Adaptaciones sobre el módulo LDAP Server para Windows (Strawberry Perl) Lista de adaptaciones (continúa más abajo): - Relajación de condiciones de bind:     - Cuenta principal (principal account)     - Validación de contraseñas Ubicación del archivo: %Strawberry_Perl%\site\lib\net\ldap\SimpleServer\ProtocolHandler.pm CPAN: http://search.cpan.org/~russoz/Net-LDAP-SimpleServer-0.0.17/lib/Net/LDAP/SimpleServer.pm Código: package Net::LDAP::SimpleServer::ProtocolHandler; use strict; use warnings; # ABSTRACT: LDAP protocol handler used with Net::LDAP::SimpleServer our $VERSION = '0.0.17';    # VERSION use Net::LDAP::Server; use base 'Net::LDAP::Server'; use fields qw(store root_dn root_pw allow_anon); use Carp; use Net::LDAP::LDIF; use Net::LDAP::Util qw{canonical_dn}; use Net::LDAP::FilterMatch; use Net::LDAP::Constant (     qw/LDAP_SUCCESS LDAP_AUTH_UNKNOWN LDAP_INVALID_CREDENTIALS/,   ...