Deutsch   English   Français   Italiano  
<_YEWDA_lThkAJDozaaebQuDIZVA@jntp>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder8.news.weretis.net!pasdenom.info!from-devjntp
Message-ID: <_YEWDA_lThkAJDozaaebQuDIZVA@jntp>
JNTP-Route: news2.nemoweb.net
JNTP-DataType: Article
Subject: Courbure d'une surface
Newsgroups: fr.sci.maths
JNTP-HashClient: -Ayee-b0wurMYk1ZShmFSGV9r20
JNTP-ThreadID: 6QwzKVgMurQ8qR65dZrIiD5FbA8
JNTP-Uri: http://news2.nemoweb.net/?DataID=_YEWDA_lThkAJDozaaebQuDIZVA@jntp
Supersedes: <q7syVpp9xPYL3mRkXOWY9XjnNhg@jntp>
User-Agent: Nemo/0.999a
JNTP-OriginServer: news2.nemoweb.net
Date: Thu, 27 Apr 23 13:26:22 +0000
Organization: Nemoweb
JNTP-Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36
Injection-Info: news2.nemoweb.net; posting-host="d23ec2ef69018786a6c89e8aa799311bbe212e46"; logging-data="2023-04-27T13:26:22Z/7879768"; posting-account="1@news2.nemoweb.net"; mail-complaints-to="newsmaster@news2.nemoweb.net"
JNTP-ProtocolVersion: 0.21.1
JNTP-Server: PhpNemoServer/0.94.5
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-JNTP-JsonNewsGateway: 0.96
From: Julien Arlandis <julien.arlandis@gmail.com>
Bytes: 2069
Lines: 26

Bonjour,

D'après <https://en.wikipedia.org/wiki/Gaussian_curvature> la courbure 
d'une surface définie par 
z = f(x,y) est définie par :

C(x,y) = (Fxx * Fyy - Fxy^2) / (1 + Fx^2 + Fy^2)^2

où Fxy désigne ∂(∂F/∂x)/∂y

J'ai essayé d'appliquer la formule avec matlab mais je trouve des 
résultats aberrants. J'ai alors vérifié si l'expression donnait bien 
1/R lorsque f décrit une sphère de rayon R.

Sur maxima :
f(x,y) := sqrt(R^2-x^2-y^2);

define(c(x,y), ( diff(diff(f(x,y),x),x) * diff(diff(f(x,y),y),y) -  
(diff(diff(f(x,y),x),y)) ^2 ) / ( 1 + (diff(f(x,y),x))^2 + 
(diff(f(x,y),y))^2 )^(2)) ;

Il semblerait que c(x,y) retourne 1/R^2 au lieu de 1/R, de fait la bonne 
équation serait plutôt :

C(x,y) = sqrt(Fxx * Fyy - Fxy^2) / (1 + Fx^2 + Fy^2)

Qui pourrait me le confirmer ?