joshuarauh commited on
Commit
5a3373d
·
verified ·
1 Parent(s): 87819a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py CHANGED
@@ -840,6 +840,22 @@ make sure the question is CLEAR about what regions you intend to be included in
840
  14. In expanding or factoring polynomial expressions, be careful not to make errors
841
  - (1+u^2)^2 is equal to (1+2u^2+u^4), NOT equal to (1+3u^2+u^4)
842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
843
  """
844
 
845
  #Consider
 
840
  14. In expanding or factoring polynomial expressions, be careful not to make errors
841
  - (1+u^2)^2 is equal to (1+2u^2+u^4), NOT equal to (1+3u^2+u^4)
842
 
843
+ 15. When finding points where dy/dx = 0 in parametric equations:
844
+ - (a) First find the ratio dy/dx = (dy/dt)/(dx/dt)
845
+ - (b) Find t-values where this ratio equals 0
846
+ - (c) CRITICAL: For any t-values where both dy/dt = 0 AND dx/dt = 0:
847
+ - (d) These are potential "corner points" or cusps
848
+ - (e) Must apply parametric L'Hôpital's rule:
849
+ * Define f(t) = dy/dt and g(t) = dx/dt
850
+ * If f(t₀) = g(t₀) = 0, evaluate lim[t→t₀] f'(t)/g'(t)
851
+ * This limit, if it exists, gives the actual slope at t₀
852
+ Only conclude the tangent is horizontal if this limit equals 0
853
+ - (f) For each solution t:
854
+ - Calculate the corresponding point (x(t), y(t))
855
+ - Verify the point lies on the curve
856
+ - State whether it's a regular point or special point (cusp, corner, etc.)
857
+
858
+
859
  """
860
 
861
  #Consider