Sindbad~EG File Manager
/* M. Beeson, for MathXpert */
/* English-language topic titles */
/* Translate text between quotation marks */
/* File must list all topics defined in tdefn.h */
/* These strings are used to construct the menus,
to verify the correctness of index files,
and to get title strings for the solution window.
*/
/* modified 12.14.98 */
/* modified 7.26.07 */
/*
4.26.13 added an include
5.3.13 changed names of exported functions
10.24.23 eliminated OEM for \theta
2.20.24 "diff exp from definition"
*/
/* don't translate this or the next line */
#include "tdefn.h"
#include "english1.h"
/*__________________________________________________________*/
const char * English_topicstr(int n)
/* return the English for topic number n
*/
{ switch(n)
{ case _ordinary_graph : return "Graph y = f(x)";
case _ordinary_graph_quadratic : return "Graph quadratic functions";
case _ordinary_graph_polynomial : return "Graph polynomials";
case _ordinary_graph_linear : return "Graph linear functions";
case _ordinary_graph_rational : return "Graph rational functions";
case _ordinary_graph_fractexp : return "Graph fractional exponents";
case _ordinary_graph_exponential: return "Graph exponential function";
case _ordinary_graph_log : return "Graph logarithmic function";
case _ordinary_graph_algvariety : return "Graph algebraic function";
case _ordinary_graph_sincos : return "Amplitude, frequency, and phase";
case _ordinary_graph_trig : return "Graph the trig functions";
case _ordinary_graph_arctrig : return "Graph the inverse trig functions";
case _ordinary_graph_htrig : return "Graph hyperbolic functions";
case _ordinary_graph_trigvariety: return "Graph complicated trig functions";
case _ordinary_graph_bessel : return "Graph Bessel functions";
case _graph_taylor : return "Graph Taylor-McLaurin series";
case _graph_fourier : return "Graph Fourier series";
case _compare_same : return "Compare graphs--same axes";
case _compare_different : return "Compare graphs--different axes";
case _graph_ineq : return "Inequality of functions";
case _graph_set : return "Inequality relation";
case _graph_circle : return "Graph circles"; // changed 7.26.07
case _graph_ellipse : return "Graph ellipses"; // changed 7.26.07
case _graph_parabola : return "Graph parabolas"; // changed 7.26.07
case _graph_hyperbola : return "Graph hyperbolas"; // changed 7.26.07
case _graph_relation : return "Relation f(x,y) = g(x,y)";
case _polyroots : return "Graph complex roots of polynomial";
case _parametric_graph : return "Parametric graph";
case _polar_graph : return "Polar graph";
case _comparefandfprime : return "Compare f and f'";
case _comparetwoderivs : return "Compare f, f', and f''";
case _contour_plot : return "Contour plot of z = f(x,y)";
case _complex_contour_plot : return "Complex contour plot of z = f(u)";
case _solve_ode : return "Solve y' = f(x,y) graphically";
case _solve_two_odes : return "Solve two odes graphically";
case _high_order_ode : return "Graph higher-order ode";
case _riemann_sums : return "Riemann sums";
case _trapezoid_rule : return "Trapezoid rule";
case _simpsons_rule : return "Simpson's rule";
case _space_curve : return "Space curve";
case _nonparametric_surface: return "Graph z = f(x,y)";
case _polar_nonparametric_surface : return "Graph z = f(r,\\theta)";
case _parametric_surface : return "Graph parametric surface";
/* Algebra 1 */
case _evaluate_numerically : return "Evaluate numerically";
case _verify_algebraic_identity : return "Verify polynomial identity";
case _solve_linear_equation: return "Solve a linear equation (beginners)"; // changed 7.26.07
case _multiply_polynomials : return "Multiply polynomials";
case _alg1_absolute_value : return "Absolute value";
case _numerical_exponents : return "Numerical exponents";
case _alg1_exponents : return "Algebraic exponents";
case _simple_factoring : return "Simple factoring";
case _alg1_factor_quadratic: return "Factor quadratic"; // changed 7.26.07
case _factor_by_grouping : return "Factor by grouping";
case _complete_the_square : return "Complete the square";
case _alg1_linear_inequality: return "Linear inequalities (beginners)";
case _alg1_linear_systems : return "Two linear equations (beginners)"; // changed 7.26.07
case _alg1_simplify : return "Simplify rational functions";
case _add_numerical_fractions: return "Add numerical fractions";
case _simplify_fractions : return "Simplify fractions";
case _numerical_compound_fractions: return "Numerical compound fractions";
case _alg1_compound_fractions : return "Algebraic compound fractions (beginners)"; // changed 7.26.07
case _equations_containing_fractions: return "Simple equations with fractions";
case _numerical_radicals : return "Numerical radical expressions"; // changed 7.26.07
case _alg1_radicals : return "Algebraic square and n-th roots";
/* Linear Algebra */
case _solve_linear_eqn : return "Solve a linear equation (practice)"; // changed 7.26.07
case _eqns_by_substitution : return "Solve equations by substitution";
case _eqns_by_adding_eqns : return "Solve equations by elimination"; // changed 7.26.07
case _eqns_in_matrix_form : return "Row operations on matrix equations";
case _gauss_jordan : return "Gauss-Jordan elimination";
case _eqns_by_matrix_inverse: return "Solve equations by matrix inverse";
case _cramers_rule : return "Cramer's rule";
/* Algebra 2 */
case _simplify : return "Simplification review"; // changed 7.26.07
case _simple_commondenom : return "Common denominators (practice)";
case _advanced_commondenom : return "Advanced common denominators";
case _compound_fractions : return "Algebraic compound fractions"; // changed 7.26.07
case _simplify_polynomials : return "Polynomials";
case _simple_exponents : return "Simple exponents";
case _simplify_rational_functions : return "Rational functions"; // changed 7.26.07
case _negative_exponents : return "Negative exponents";
case _eliminate_negative_exponents: return "Eliminate negative exponents";
case _radicals : return "Radical expressions"; // changed 7.26.07
case _absolute_value : return "Absolute value equations and inequalities"; // changed 7.26.07
case _fractional_exponents : return "Rational exponents";
case _eliminate_fractional_exponents: return "Eliminate rational exponents";
case _factor_quadratics : return "Factor quadratics";
case _quadratic_formula : return "The quadratic formula"; // changed 7.26.07
case _solve_quadratic_equation: return "Quadratic equations";
case _advanced_factoring : return "Advanced factoring";
case _solve_higher_degree_equation: return "Equations reducible to quadratic"; // changed 7.26.07
case _solve_rational_equation: return "Rational equations"; // changed 7.26.07
case _solve_root_equation : return "Equations involving radicals"; // changed 7.26.07
case _solve_fractions_and_roots: return "Equations involving fractions and roots"; // changed 7.26.07
case _solve_linear_inequality: return "Linear inequalities"; // changed 7.26.07, used to have (practice) after it
case _solve_polynomial_inequality: return "Polynomial inequalities";
case _solve_rational_inequality: return "Inequalities with fractions";
case _solve_root_inequality: return "Inequalities with roots";
case _solve_equation : return "Equation solving review";
case _cubic_one_root : return "Cubic equations (one real root)";
case _simplify_roots_and_powers: return "Simplify radical expressions"; // changed 7.26.07
case _simplify_roots_and_fractions: return "Simplify roots and fractions"; // changed 7.26.07
case _simplify_any_function: return "Simplification review"; // changed 7.26.07
case _verify_alg2_identity : return "Verify algebraic identity";
/* end Algebra 2 */
/* Precalculus */
case _evaluate_trig : return "Evaluate trig function";
case _basic_trig : return "Basic trig identities";
case _trig_addition : return "Addition formulas";
case _double_angle : return "Double angle formulas";
case _half_angle : return "Half angle formulas";
case _trig_product : return "Trigonometric products";
case _trig_factor : return "Trig factor identities";
case _trig_simplify : return "Simplify trig expression";
case _trig_identities : return "Verify trig identities";
case _inverse_trig_functions: return "Inverse trig functions";
case _simple_trig_eqn : return "Simple trig equations";
case _trig_eqn : return "Trig equations";
case _complex_arithmetic : return "Complex arithmetic";
case _logarithms : return "Logarithmic functions";
case _change_log_base : return "Change base of logarithms";
case _exponentials : return "Exponentials and logarithms";
case _simplify_logpower : return "Simplify logs and powers";
case _log_eqn : return "Equations with logarithms";
case _exp_eqn : return "Exponential equations";
case _polar_form : return "Polar form of complex numbers";
case _de_moivre : return "De Moivre's theorem";
case _hyperfunctions : return "Derive hyperbolic function laws";
case _hyperfunctions2 : return "Hyperbolic trigonometry";
case _complex_trig : return "Complex trig and log functions";
case _complex_quadratics : return "Complex quadratic equations";
case _complex_cubics : return "Cubic equations";
case _sigma_notation : return "Sigma notation";
case _binomial_theorem : return "Binomial theorem";
case _complex_roots : return "Complex roots";
/* Calculus 1 */
case _polynomial_limits : return "Limits of polynomials";
case _simple_limits : return "Simple limits";
case _diff_from_def : return "Differentiate from definition";
case _diff_polynomial : return "Differentiate polynomials";
case _diff_basics : return "Basic differentiation rules";
case _lim_trig : return "Limits of trig functions";
case _diff_trig : return "Differentiate trig functions";
case _chain_rule : return "Chain rule";
case _difreview : return "Differentiation review";
case _higher_order_diff : return "Higher-order derivatives";
case _implicit_diff : return "Implicit differentiation";
case _related_rates : return "Related Rates";
case _minmax : return "Maxima and Minima";
case _rational_limits : return "Limits of rational functions";
case _limits_at_infinity : return "Limits at infinity";
case _infinite_limits : return "Infinite limits";
case _sigma_notation1 : return "Sigma notation";
case _int_poly : return "Integrate polynomials";
case _simple_int : return "Simple integration";
case _fundamental_theorem : return "Fundamental theorem";
case _int_by_substitution : return "Integration by substitution";
case _int_by_parts1 : return "Integration by parts";
case _intreview : return "Integration review";
/* Calculus 2 */
case _lim_exp : return "Limits of exponentials";
case _lhopitals_rule : return "L'Hospital's rule";
case _limleadingterm : return "Limits using leading term";
case _limits_any_function : return "Limit review";
case _diff_exp_from_defn : return "Differentiate exp from definition";
case _diff_exp : return "Differentiate exponentials";
case _diff_logs : return "Differentiate logarithms";
case _logarithmic_differentiation: return "Logarithmic differentiation";
case _diff_arctrig : return "Differentiate inverse trig functions"; // changed 7.26.07
case _diff_hyperbolic : return "Differentiate hyperbolic functions"; // changed 7.26.07
case _diff_any_function : return "Differentiation review";
case _int_by_parts2 : return "Integration by parts";
case _int_logs : return "Integrate to logarithms";
case _trigpower_integrals : return "Trigonometric integrals";
case _trig_substitution : return "Trig substitutions";
case _integrate_rational_functions: return "Integrate rational functions";
case _rationalizing_substitutions: return "Rationalizing substitutions";
case _integrate_any_function: return "Integration review";
case _improper_integrals : return "Improper integrals";
case _sum_series : return "Geometric and telescoping series";
case _integral_test : return "Integral test";
case _comparison_test : return "Comparison test";
case _root_ratio_tests : return "Root and ratio tests";
case _power_series1 : return "Beginning power series";
case _power_series2 : return "Power series";
// rest are not implemented
#if 0
case _separable_ode : return "Separable ODEs";
case _arc_length : return "Arc length of y = f(x)";
case _area_revolution : return "Area of surface of revolution";
case _volume_revolution : return "Volume of surface of revolution";
#endif
}
return "oops"; // avoid a warning message
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists