<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://www.glc.us.es/~jalonso/SLEAM2010/index.php?action=history&amp;feed=atom&amp;title=Ejercicio_Selectividad_Andaluc%C3%ADa_Junio_2007</id>
	<title>Ejercicio Selectividad Andalucía Junio 2007 - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://www.glc.us.es/~jalonso/SLEAM2010/index.php?action=history&amp;feed=atom&amp;title=Ejercicio_Selectividad_Andaluc%C3%ADa_Junio_2007"/>
	<link rel="alternate" type="text/html" href="https://www.glc.us.es/~jalonso/SLEAM2010/index.php?title=Ejercicio_Selectividad_Andaluc%C3%ADa_Junio_2007&amp;action=history"/>
	<updated>2026-09-20T01:16:56Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://www.glc.us.es/~jalonso/SLEAM2010/index.php?title=Ejercicio_Selectividad_Andaluc%C3%ADa_Junio_2007&amp;diff=1283&amp;oldid=prev</id>
		<title>Angromgue: Página creada con &#039;&#039;&#039;&#039;Enunciado&#039;&#039;&#039; Sea la función definida por: &lt;math&gt;f(x)=2*x^3+12*x^2+a*x+b&lt;/math&gt; Determina a y b sabiendo que la recta tangente a la gráfica de f en su punto de inflexión es…&#039;</title>
		<link rel="alternate" type="text/html" href="https://www.glc.us.es/~jalonso/SLEAM2010/index.php?title=Ejercicio_Selectividad_Andaluc%C3%ADa_Junio_2007&amp;diff=1283&amp;oldid=prev"/>
		<updated>2011-05-08T13:39:46Z</updated>

		<summary type="html">&lt;p&gt;Página creada con &amp;#039;&amp;#039;&amp;#039;&amp;#039;Enunciado&amp;#039;&amp;#039;&amp;#039; Sea la función definida por: &amp;lt;math&amp;gt;f(x)=2*x^3+12*x^2+a*x+b&amp;lt;/math&amp;gt; Determina a y b sabiendo que la recta tangente a la gráfica de f en su punto de inflexión es…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Enunciado&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Sea la función definida por:&lt;br /&gt;
&amp;lt;math&amp;gt;f(x)=2*x^3+12*x^2+a*x+b&amp;lt;/math&amp;gt;&lt;br /&gt;
Determina a y b sabiendo que la recta tangente a la gráfica de f en su punto de inflexión es la recta &amp;lt;math&amp;gt;y=2*x+3&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Solución&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
En Maxima, definimos la función f(x):&lt;br /&gt;
&lt;br /&gt;
 (%i1) f(x):=2*x^3+12*x^2+a*x+b;&lt;br /&gt;
 (%o1) f(x):=2*x^3+12*x^2+a*x+b&lt;br /&gt;
&lt;br /&gt;
A continuación, definimos la derivada primera de f(x):&lt;br /&gt;
&lt;br /&gt;
 (%i2) define(g(x),diff(f(x),x));&lt;br /&gt;
 (%o2) g(x):=6*x^2+24*x+a&lt;br /&gt;
&lt;br /&gt;
Seguidamente, definimos la derivada segunda y calculamos sus raíces:&lt;br /&gt;
&lt;br /&gt;
 (%i3) define(h(x),diff(g(x),x));&lt;br /&gt;
 (%o3) h(x):=12*x+24&lt;br /&gt;
 &lt;br /&gt;
 (%i4) solve(h(x),x);&lt;br /&gt;
 (%o4) [x=-2]&lt;br /&gt;
&lt;br /&gt;
Definimos la derivada tercera:&lt;br /&gt;
 (%i5) define(j(x),diff(h(x),x));&lt;br /&gt;
 (%o5) j(x):=12&lt;br /&gt;
&lt;br /&gt;
Como siempre es distinta de cero, sabemos que en &amp;lt;math&amp;gt;x=-2&amp;lt;/math&amp;gt; la función tiene un punto de inflexión.&lt;br /&gt;
&lt;br /&gt;
Definimos la recta tangente:&lt;br /&gt;
&lt;br /&gt;
 (%i6) y(x):=2*x+3;&lt;br /&gt;
 (%o6) y(x):=2*x+3&lt;br /&gt;
&lt;br /&gt;
de donde observamos que tiene pendiente 2. Por lo tanto, debemos imponer que la derivada primera de f en &amp;lt;math&amp;gt;x=-2&amp;lt;/math&amp;gt; sea igual a 2.&lt;br /&gt;
&lt;br /&gt;
 (%i11) g(-2);&lt;br /&gt;
 (%o11) a-24&lt;br /&gt;
&lt;br /&gt;
de donde obtenemos una primera ecuación, &amp;lt;math&amp;gt;a-24=2&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Por otra parte, sabemos que el punto de inflexión tiene que pertenecer a la curva y a la recta tangente. Para ello, calculamos el valor en &amp;lt;math&amp;gt;x=-2&amp;lt;/math&amp;gt; de ambas funciones:&lt;br /&gt;
&lt;br /&gt;
 (%i7) f(-2);&lt;br /&gt;
 (%o7) b-2*a+32&lt;br /&gt;
 &lt;br /&gt;
 (%i8) y(-2);&lt;br /&gt;
 (%o8) -1&lt;br /&gt;
&lt;br /&gt;
de donde obtenemos la otra ecuación:&amp;lt;math&amp;gt;b-2*a+32=-1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Luego, con ambas ecuaciones obtenemos un sistema de 2 ecuaciones con 2 incógnitas, cuya solución son los valores de a y b buscados:&lt;br /&gt;
&lt;br /&gt;
 (%i9) S1:[a-24=2,b-2*a+32=-1];&lt;br /&gt;
 (%o9) [a-24=2,b-2*a+32=-1]&lt;br /&gt;
&lt;br /&gt;
 (%i10) solve(S1,[a,b]);&lt;br /&gt;
 (%o10) [[a=26,b=19]]&lt;br /&gt;
&lt;br /&gt;
Por tanto, a=26 y b=19&lt;/div&gt;</summary>
		<author><name>Angromgue</name></author>
		
	</entry>
</feed>