Import work from year 2014-2015
This commit is contained in:
1915
1S/DS/DS_0413/Bilan/Bilan DM_0408.ipynb
Normal file
1915
1S/DS/DS_0413/Bilan/Bilan DM_0408.ipynb
Normal file
File diff suppressed because it is too large
Load Diff
2419
1S/DS/DS_0413/Bilan/Bilan DS_0408.ipynb
Normal file
2419
1S/DS/DS_0413/Bilan/Bilan DS_0408.ipynb
Normal file
File diff suppressed because it is too large
Load Diff
BIN
1S/DS/DS_0413/Bilan/bilan.pdf
Normal file
BIN
1S/DS/DS_0413/Bilan/bilan.pdf
Normal file
Binary file not shown.
3142
1S/DS/DS_0413/Bilan/bilan.tex
Normal file
3142
1S/DS/DS_0413/Bilan/bilan.tex
Normal file
File diff suppressed because it is too large
Load Diff
30
1S/DS/DS_0413/Bilan/texenv.py
Normal file
30
1S/DS/DS_0413/Bilan/texenv.py
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env python
|
||||
# encoding: utf-8
|
||||
|
||||
import jinja2, os
|
||||
|
||||
# Definition of jinja syntax for latex
|
||||
texenv = jinja2.Environment(
|
||||
block_start_string = '\Block{',
|
||||
# Gros WTF!! Si on le met en maj ça ne marche pas alors que c'est en maj dans le template...
|
||||
block_end_string = '}',
|
||||
variable_start_string = '\Var{',
|
||||
variable_end_string = '}',
|
||||
loader = jinja2.FileSystemLoader(os.path.abspath('.')),
|
||||
extensions = ['jinja2.ext.do']
|
||||
)
|
||||
|
||||
# Filters
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from pymath.expression import Expression
|
||||
exp = Expression("2/4 + 18")
|
||||
print(do_calculus(exp.simplify()))
|
||||
|
||||
|
||||
|
||||
# -----------------------------
|
||||
# Reglages pour 'vim'
|
||||
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
||||
# cursor: 16 del
|
||||
79
1S/DS/DS_0413/Bilan/tpl_bilan.tex
Normal file
79
1S/DS/DS_0413/Bilan/tpl_bilan.tex
Normal file
@@ -0,0 +1,79 @@
|
||||
\documentclass{/media/documents/Cours/Prof/Enseignements/2014-2015/Archive/2014-2015/tools/style/classBilan}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2014-2015/Archive/2014-2015/2014_2015}
|
||||
|
||||
\usepackage{multicol}
|
||||
|
||||
% Title Page
|
||||
\titre{DS 7}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{\seconde}
|
||||
\date{13 avril 2015}
|
||||
|
||||
|
||||
\begin{document}
|
||||
|
||||
\Block{for (name, notes) in eleves.iterrows()}
|
||||
\maketitle
|
||||
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\large
|
||||
\Var{name}
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
\begin{flushright}
|
||||
\Large \Var{notes[ds_name]} / \Var{barem.DS_0413[0]}
|
||||
\end{flushright}
|
||||
\end{minipage}
|
||||
|
||||
\vfill
|
||||
|
||||
\fbox{%
|
||||
\begin{minipage}{0.9\linewidth}
|
||||
\hfill
|
||||
\vspace{3cm}
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\vfill
|
||||
|
||||
\scriptsize
|
||||
\begin{multicols}{2}
|
||||
\begin{tabular}{|p{3cm}|c|c|}
|
||||
\hline
|
||||
\rowcolor{highlightbg} Exercices & Réussite & Barème \\
|
||||
\hline
|
||||
\Block{for question in barem.T[1:11].T}
|
||||
\Var{question} & \Var{notes[question]} & \Var{barem[question][0]} \\
|
||||
\hline
|
||||
\Block{endfor}
|
||||
\end{tabular}
|
||||
|
||||
\begin{tabular}{|p{3cm}|c|c|}
|
||||
\hline
|
||||
\rowcolor{highlightbg} Exercices & Réussite & Barème \\
|
||||
\hline
|
||||
\Block{for question in barem.T[11:].T}
|
||||
\Var{question} & \Var{notes[question]} & \Var{barem[question][0]} \\
|
||||
\hline
|
||||
\Block{endfor}
|
||||
\end{tabular}
|
||||
\end{multicols}
|
||||
|
||||
%\begin{tabular}{|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}
|
||||
% \hline
|
||||
% Pas de réponse & Faux & Peu juste & Partiellement juste & Juste \\
|
||||
% \hline
|
||||
% \NoRep & \RepZ & \RepU & \RepD & \RepT \\
|
||||
% \hline
|
||||
%\end{tabular}
|
||||
\normalsize
|
||||
\pagebreak
|
||||
\Block{endfor}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
1S/DS/DS_0413/DS_0413.pdf
Normal file
BIN
1S/DS/DS_0413/DS_0413.pdf
Normal file
Binary file not shown.
122
1S/DS/DS_0413/DS_0413.tex
Normal file
122
1S/DS/DS_0413/DS_0413.tex
Normal file
@@ -0,0 +1,122 @@
|
||||
\documentclass[a4paper,12pt, table]{/media/documents/Cours/Prof/Enseignements/2014-2015/Archive/2014-2015/tools/style/classDS}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2014-2015/Archive/2014-2015/2014_2015}
|
||||
|
||||
% Title Page
|
||||
\titre{7}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{\premiereS}
|
||||
\date{13 avril 2015}
|
||||
\duree{1 heure}
|
||||
%\sujet{%{{infos.subj%}}}
|
||||
% DS DSCorr DM DMCorr Corr
|
||||
\typedoc{DS}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
Le barème est donné à titre indicatif, il pourra être modifié.
|
||||
|
||||
\begin{center}
|
||||
\Large Calculatrice interdite
|
||||
\end{center}
|
||||
|
||||
\normalsize
|
||||
|
||||
\begin{questions}
|
||||
|
||||
\question[9]
|
||||
% Suites
|
||||
À la suite d'un héritage, Maëlis dispose d'une somme de 65 000\euro qu'elle désire faire fructifier. La banque lui propose deux placements:
|
||||
\begin{itemize}
|
||||
\item \textbf{Placement A (intérêts simples):} le capital (la quantité d'argent disponible sur le compte) augmente de chaque année de 3500\euro.
|
||||
\item \textbf{Placement B (intérêts composés):} le capital augmente de chaque année de 4,5\% du capital de l'année précédente.
|
||||
\end{itemize}
|
||||
On note $\left( u_n \right)$ la capital acquis à la fin de la n-ième année avec le placement A et $\left( v_n \right)$ le capital acquis à la fin de la n-ième année avec le placement B.
|
||||
|
||||
\begin{parts}
|
||||
%1pt
|
||||
\part Calculer $u_1$ et $u_2$.
|
||||
\part
|
||||
\begin{subparts}
|
||||
% 2
|
||||
\subpart Quelle est la nature de la suite$\left( u_n \right)$ (vous préciserez le premier terme et la raison)? Donner la relation explicite de $\left( u_n \right)$.
|
||||
% 2
|
||||
\subpart Quelle est la nature de la suite$\left( v_n \right)$ (vous préciserez le premier terme et la raison)? Donner la relation explicite de $\left( v_n \right)$.
|
||||
\end{subparts}
|
||||
%2
|
||||
\part Combien faudra-t-il d'année pour que le capital dépasse 101 000\euro avec la formule A?
|
||||
%2
|
||||
\part Écrire un algorithme prenant une valeur de $n$ en argument qui renvoie la valeur de $v_n$. Vous n'êtes pas autorisé à utiliser la formule explicite de la suite $\left( v_n \right)$.
|
||||
\end{parts}
|
||||
|
||||
\question[11]
|
||||
%Produit scalaire.
|
||||
Dans cet exercice, toutes les questions sont indépendantes.
|
||||
\begin{parts}
|
||||
%1pt
|
||||
\part Recopier puis compléter le tableau des valeurs de cosinus
|
||||
\begin{center}
|
||||
\begin{tabular}{|c|*{5}{p{2cm}|}}
|
||||
\hline
|
||||
Angle $\alpha$ & 0 & $\frac{\pi}{6}$ & $\frac{\pi}{4}$ & $\frac{\pi}{3}$ & $\frac{\pi}{2}$ \\
|
||||
\hline
|
||||
$\cos(\alpha)$ & & & & & \\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\end{center}
|
||||
\part Soit $A$, $B$ et $C$ trois points du plan comme sur le dessin ci-dessous \textit{(attention le dessin ne respecte pas les longueurs et les angles)}.
|
||||
\begin{multicols}{2}
|
||||
\includegraphics[scale=0.4]{./fig/triangle}
|
||||
|
||||
\columnbreak
|
||||
\begin{subparts}
|
||||
% 1,5
|
||||
\subpart Calculer $\vec{AC} . \vec{AB}$
|
||||
% 1,5
|
||||
\subpart On donne $\vec{BA} . \vec{BC} = 3\sqrt{3}$, en utilisant ce produit scalaire, calculer l'angle $(\vec{BA};\vec{BC})$.
|
||||
\end{subparts}
|
||||
\end{multicols}
|
||||
|
||||
\part On donne $||\vec{u}|| = 2$, $||\vec{v}|| = 3$ et $\vec{u}.\vec{v} = -5$. Calculer les quantités suivantes
|
||||
\begin{multicols}{2}
|
||||
\begin{subparts}
|
||||
%1,5
|
||||
\subpart $A = \vec{u} . \left( \vec{v} - 2 \vec{u} \right)$
|
||||
%1,5
|
||||
\subpart $B = ||\vec{u} - \vec{v}||$
|
||||
\end{subparts}
|
||||
\end{multicols}
|
||||
\part Soit $ACDE$ un rectangle et $ABCL$ un carré. D'après la figure suivante \textit{(seul le codage de la figure et ce qui est dans l'énoncé a une valeur de vérité, toutes autres informations devra être non présente sur la figure devra être justifiée)} trouver le projeté orthogonal des éléments suivants
|
||||
\begin{multicols}{2}
|
||||
\includegraphics[scale=0.4]{./fig/proj}
|
||||
\columnbreak
|
||||
\begin{subparts}
|
||||
%1
|
||||
\subpart $A$ sur le droite $\left( CL \right)$
|
||||
%1.5
|
||||
\subpart $\vec{CL}$ sur la droite $\left( ED \right)$
|
||||
%1.5
|
||||
\subpart $\vec{AK}$ sur $\left( BH \right)$
|
||||
\end{subparts}
|
||||
\vfill
|
||||
\end{multicols}
|
||||
\end{parts}
|
||||
|
||||
\question[2]
|
||||
\begin{center}
|
||||
\textbf{Bonus}
|
||||
\end{center}
|
||||
Calculer le nombre suivant en detaillant les calculs.
|
||||
\begin{align*}
|
||||
A = \frac{659330}{7}
|
||||
\end{align*}
|
||||
|
||||
\end{questions}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
1S/DS/DS_0413/fig/proj.pdf
Normal file
BIN
1S/DS/DS_0413/fig/proj.pdf
Normal file
Binary file not shown.
277
1S/DS/DS_0413/fig/proj.svg
Normal file
277
1S/DS/DS_0413/fig/proj.svg
Normal file
@@ -0,0 +1,277 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="297mm"
|
||||
height="210mm"
|
||||
viewBox="0 0 1052.3622 744.09448"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="proj.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.80366138"
|
||||
inkscape:cx="427.75103"
|
||||
inkscape:cy="459.93858"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:window-height="748"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="274"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-308.26772)">
|
||||
<g
|
||||
id="g4172"
|
||||
transform="matrix(0.82308253,0,0,0.82308253,92.231722,1.0250119)">
|
||||
<rect
|
||||
y="628.33691"
|
||||
x="356.80197"
|
||||
height="481.3522"
|
||||
width="357.7428"
|
||||
id="rect4136"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.58413124;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"
|
||||
y="696.98553"
|
||||
x="-193.66673"
|
||||
height="253.8409"
|
||||
width="253.8409"
|
||||
id="rect4138"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.76863718;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"
|
||||
y="698.23138"
|
||||
x="-65.721474"
|
||||
height="124.64975"
|
||||
width="124.64975"
|
||||
id="rect4138-0"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.8508451;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4155"
|
||||
d="m 535.39611,452.05894 0,657.63016"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.19554615;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="matrix(0.59650329,-0.80261063,0.59650329,0.80261063,0,0)"
|
||||
y="840.21204"
|
||||
x="-239.94743"
|
||||
height="297.29306"
|
||||
width="297.29306"
|
||||
id="rect4138-1"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:5.58492613;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="344.67252"
|
||||
y="540.95276"
|
||||
id="text4179"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4181"
|
||||
x="344.67252"
|
||||
y="540.95276">A</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="527.58539"
|
||||
y="344.35257"
|
||||
id="text4183"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4185"
|
||||
x="527.58539"
|
||||
y="344.35257">B</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="699.2995"
|
||||
y="529.75403"
|
||||
id="text4187"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4189"
|
||||
x="699.2995"
|
||||
y="529.75403">C</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="697.70648"
|
||||
y="950.32916"
|
||||
id="text4191"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4193"
|
||||
x="697.70648"
|
||||
y="950.32916">D</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="345.47818"
|
||||
y="950.32916"
|
||||
id="text4195"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4197"
|
||||
x="345.47818"
|
||||
y="950.32916">E</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="345.47818"
|
||||
y="721.37701"
|
||||
id="text4199"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4201"
|
||||
x="345.47818"
|
||||
y="721.37701">F</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="428.04099"
|
||||
y="432.69824"
|
||||
id="text4203"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4205"
|
||||
x="428.04099"
|
||||
y="432.69824">G</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="615.93103"
|
||||
y="442.65268"
|
||||
id="text4207"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4209"
|
||||
x="615.93103"
|
||||
y="442.65268">H</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="704.85675"
|
||||
y="718.88843"
|
||||
id="text4211"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4213"
|
||||
x="704.85675"
|
||||
y="718.88843">I</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="528.82971"
|
||||
y="946.76776"
|
||||
id="text4215"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4217"
|
||||
x="528.82971"
|
||||
y="946.76776">J</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="552.4715"
|
||||
y="703.95673"
|
||||
id="text4219"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4221"
|
||||
x="552.4715"
|
||||
y="703.95673">K</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="536.29553"
|
||||
y="486.20334"
|
||||
id="text4223"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4225"
|
||||
x="536.29553"
|
||||
y="486.20334">L</tspan></text>
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4227"
|
||||
width="25.681843"
|
||||
height="25.681843"
|
||||
x="385.90918"
|
||||
y="888.70886" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4249"
|
||||
width="22.162415"
|
||||
height="22.162415"
|
||||
x="658.19867"
|
||||
y="892.22827" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4251"
|
||||
width="21.774437"
|
||||
height="21.774437"
|
||||
x="658.86694"
|
||||
y="519.39105" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4253"
|
||||
width="15.447467"
|
||||
height="15.447467"
|
||||
x="97.548256"
|
||||
y="743.24152"
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4253-3"
|
||||
width="15.447467"
|
||||
height="15.447467"
|
||||
x="10.398686"
|
||||
y="640.64453"
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4253-5"
|
||||
width="15.447467"
|
||||
height="15.447467"
|
||||
x="-94.91082"
|
||||
y="833.10364"
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
BIN
1S/DS/DS_0413/fig/triangle.pdf
Normal file
BIN
1S/DS/DS_0413/fig/triangle.pdf
Normal file
Binary file not shown.
274
1S/DS/DS_0413/fig/triangle.svg
Normal file
274
1S/DS/DS_0413/fig/triangle.svg
Normal file
@@ -0,0 +1,274 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns0="http://www.iki.fi/pav/software/textext/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="154.25439mm"
|
||||
height="124.69004mm"
|
||||
viewBox="0 0 546.57069 441.8151"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="triangle.svg">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.80366138"
|
||||
inkscape:cx="336.86841"
|
||||
inkscape:cy="191.17589"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-object-midpoints="false"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:window-height="748"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="274"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="10"
|
||||
fit-margin-left="10"
|
||||
fit-margin-right="10"
|
||||
fit-margin-bottom="10" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<marker
|
||||
inkscape:isstock="true"
|
||||
style="overflow:visible"
|
||||
id="Arrow1Sstart"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow1Sstart">
|
||||
<path
|
||||
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
||||
id="path4182"
|
||||
inkscape:connector-curvature="0" />
|
||||
</marker>
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(-147.47979,-411.1727)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Calque 1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136"
|
||||
d="m 218.99771,767.41632 328.49656,0 76.82708,-286.72257 z"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4138"
|
||||
y="802.25684"
|
||||
x="182.91286"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="802.25684"
|
||||
x="182.91286"
|
||||
id="tspan4140"
|
||||
sodipodi:role="line">A</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4142"
|
||||
y="803.50116"
|
||||
x="562.42596"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="803.50116"
|
||||
x="562.42596"
|
||||
id="tspan4144"
|
||||
sodipodi:role="line">B</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4146"
|
||||
y="473.76031"
|
||||
x="637.08423"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="473.76031"
|
||||
x="637.08423"
|
||||
id="tspan4148"
|
||||
sodipodi:role="line">C</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4150"
|
||||
y="619.34399"
|
||||
x="363.3371"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="619.34399"
|
||||
x="363.3371"
|
||||
id="tspan4152"
|
||||
sodipodi:role="line">5</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4154"
|
||||
y="817.18854"
|
||||
x="360.84851"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="817.18854"
|
||||
x="360.84851"
|
||||
id="tspan4156"
|
||||
sodipodi:role="line">3</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
id="text4158"
|
||||
y="646.71869"
|
||||
x="622.15259"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.5px;line-height:125%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
y="646.71869"
|
||||
x="622.15259"
|
||||
id="tspan4160"
|
||||
sodipodi:role="line">2</tspan></text>
|
||||
<path
|
||||
d="m 311.3415,709.15122 a 109.18881,109.18881 0 0 1 16.84354,57.69521"
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="6.277966"
|
||||
sodipodi:start="5.7203127"
|
||||
sodipodi:ry="109.18881"
|
||||
sodipodi:rx="109.18881"
|
||||
sodipodi:cy="767.41632"
|
||||
sodipodi:cx="218.99771"
|
||||
sodipodi:type="arc"
|
||||
id="path4164"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||
<g
|
||||
id="g4244"
|
||||
ns0:preamble=""
|
||||
ns0:text="$\\frac{\\pi}{2}$">
|
||||
<defs
|
||||
id="defs4246">
|
||||
<g
|
||||
id="g4248">
|
||||
<symbol
|
||||
id="textext-2c4b1d77-0"
|
||||
overflow="visible"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4251"
|
||||
d=""
|
||||
style="stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="textext-2c4b1d77-1"
|
||||
overflow="visible"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4254"
|
||||
d="m 2.171875,-2.53125 0.828125,0 c -0.109375,0.421875 -0.265625,1.046875 -0.265625,1.609375 0,0.28125 0.046875,0.46875 0.078125,0.609375 0.109375,0.359375 0.203125,0.375 0.3125,0.375 0.171875,0 0.328125,-0.140625 0.328125,-0.3125 0,-0.046875 -0.015625,-0.078125 -0.046875,-0.140625 C 3.265625,-0.65625 3.140625,-1.046875 3.140625,-1.625 c 0,-0.125 0,-0.40625 0.09375,-0.90625 l 0.875,0 c 0.125,0 0.1875,0 0.265625,-0.046875 0.09375,-0.078125 0.109375,-0.1875 0.109375,-0.21875 C 4.484375,-3 4.3125,-3 4.1875,-3 l -2.625,0 c -0.28125,0 -0.484375,0.0625 -0.796875,0.359375 -0.1875,0.15625 -0.453125,0.53125 -0.453125,0.59375 0,0.078125 0.09375,0.078125 0.125,0.078125 0.078125,0 0.078125,-0.015625 0.125,-0.078125 C 0.90625,-2.53125 1.34375,-2.53125 1.5,-2.53125 l 0.421875,0 c -0.21875,0.765625 -0.59375,1.59375 -0.796875,2.015625 -0.046875,0.078125 -0.109375,0.234375 -0.140625,0.25 0,0.03125 -0.015625,0.0625 -0.015625,0.109375 0,0.109375 0.078125,0.21875 0.25,0.21875 0.265625,0 0.34375,-0.3125 0.515625,-0.9375 z m 0,0"
|
||||
style="stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="textext-2c4b1d77-2"
|
||||
overflow="visible"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4257"
|
||||
d=""
|
||||
style="stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="textext-2c4b1d77-3"
|
||||
overflow="visible"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4260"
|
||||
d="m 3.515625,-1.265625 -0.234375,0 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 -0.046875,0.046875 -0.578125,0.046875 -0.6875,0.046875 l -1.28125,0 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 l 2.875,0 z m 0,0"
|
||||
style="stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g
|
||||
id="textext-2c4b1d77-4">
|
||||
<g
|
||||
id="g4263"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<use
|
||||
id="use4265"
|
||||
y="130.842"
|
||||
x="224.62801"
|
||||
xlink:href="#textext-2c4b1d77-1"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</g>
|
||||
<path
|
||||
id="path4267"
|
||||
transform="matrix(1,0,0,-1,224.628,132.274)"
|
||||
d="m 9.0625e-4,5.625e-4 4.90624975,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4269"
|
||||
style="fill:#000000;fill-opacity:1">
|
||||
<use
|
||||
id="use4271"
|
||||
y="138.2"
|
||||
x="225.097"
|
||||
xlink:href="#textext-2c4b1d77-3"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4685"
|
||||
transform="translate(38.57346,377.02446)">
|
||||
<g
|
||||
word-spacing="normal"
|
||||
letter-spacing="normal"
|
||||
font-size-adjust="none"
|
||||
font-stretch="normal"
|
||||
font-weight="normal"
|
||||
font-variant="normal"
|
||||
font-style="normal"
|
||||
stroke-miterlimit="10.433"
|
||||
xml:space="preserve"
|
||||
transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)"
|
||||
id="g4687"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
|
||||
id="path4689"
|
||||
d="m 472.36,438.42 4.14,0 c -0.53,-2.1 -1.29,-5.27 -1.29,-8.02 0,-1.4 0.18,-2.34 0.39,-3.11 0.56,-1.73 1.01,-1.87 1.56,-1.87 0.81,0 1.64,0.73 1.64,1.56 0,0.28 -0.06,0.42 -0.28,0.77 -0.66,1.29 -1.28,3.28 -1.28,6.14 0,0.65 0,2.04 0.48,4.53 l 4.36,0 c 0.63,0 0.91,0 1.28,0.26 0.49,0.36 0.6,0.91 0.6,1.08 0,1.02 -0.91,1.02 -1.5,1.02 l -13.13,0 c -1.44,0 -2.4,-0.32 -3.98,-1.78 -0.91,-0.8 -2.27,-2.68 -2.27,-2.99 0,-0.42 0.46,-0.42 0.6,-0.42 0.39,0 0.42,0.06 0.62,0.37 1.78,2.46 3.94,2.46 4.7,2.46 l 2.13,0 c -1.08,-3.85 -2.95,-7.96 -4,-10.05 -0.2,-0.45 -0.56,-1.19 -0.66,-1.31 -0.04,-0.14 -0.11,-0.28 -0.11,-0.53 0,-0.57 0.43,-1.11 1.22,-1.11 1.39,0 1.78,1.56 2.61,4.7 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke-width:0" /><polyline
|
||||
id="polyline4691"
|
||||
points="462,418 486.6,418 486.6,420.04 462,420.04 "
|
||||
style="fill:#000000;fill-rule:nonzero;stroke-width:0" /><path
|
||||
id="path4693"
|
||||
d="m 473.44,400.68 0.25,-0.01 0.25,-0.01 0.24,-0.03 0.24,-0.04 0.23,-0.05 0.23,-0.06 0.22,-0.07 0.21,-0.08 0.21,-0.1 0.21,-0.1 0.19,-0.12 0.19,-0.12 0.18,-0.14 0.18,-0.15 0.16,-0.16 0.16,-0.17 0.15,-0.18 0.15,-0.19 0.13,-0.21 0.13,-0.21 0.11,-0.23 0.11,-0.23 0.1,-0.25 0.09,-0.25 0.08,-0.27 0.07,-0.28 0.06,-0.29 0.05,-0.3 0.04,-0.31 0.03,-0.32 0.01,-0.34 0.01,-0.34 c 0,-4.33 -2.52,-5.61 -4.53,-5.61 -1.39,0 -4.47,0.38 -5.92,2.44 1.62,0.06 2.01,1.22 2.01,1.95 0,1.11 -0.84,1.91 -1.92,1.91 -0.97,0 -1.95,-0.6 -1.95,-2.02 0,-3.28 3.62,-5.4 7.84,-5.4 4.84,0 8.19,3.25 8.19,6.73 0,2.72 -2.22,5.44 -6.06,6.23 3.65,1.33 4.98,3.94 4.98,6.07 0,2.75 -3.17,4.81 -7.03,4.81 -3.88,0 -6.83,-1.89 -6.83,-4.67 0,-1.19 0.77,-1.85 1.81,-1.85 1.08,0 1.77,0.8 1.77,1.77 0,1.02 -0.69,1.75 -1.77,1.81 1.22,1.55 3.61,1.92 4.91,1.92 1.56,0 3.77,-0.76 3.77,-3.79 0,-1.47 -0.49,-3.07 -1.4,-4.14 -1.15,-1.33 -2.12,-1.41 -3.87,-1.5 -0.88,-0.08 -0.94,-0.08 -1.11,-0.11 -0.08,0 -0.36,-0.07 -0.36,-0.46 0,-0.48 0.31,-0.48 0.91,-0.48 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke-width:0" /></g> </g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
21
1S/DS/DS_0413/index.rst
Normal file
21
1S/DS/DS_0413/index.rst
Normal file
@@ -0,0 +1,21 @@
|
||||
Notes sur DS_0413
|
||||
#################
|
||||
|
||||
:date: 2015-07-01
|
||||
:modified: 2015-07-01
|
||||
:tags: DS, Suites, Angles, Produit Scalaire
|
||||
:category: 1S
|
||||
:authors: Benjamin Bertrand
|
||||
:summary: Devoir sur les suites et le produit scalaire pour les 1S. Sans calculatrice!
|
||||
|
||||
|
||||
|
||||
`Lien vers DS_0413.pdf <DS_0413.pdf>`_
|
||||
|
||||
`Lien vers DS_0413.tex <DS_0413.tex>`_
|
||||
|
||||
`Lien vers fig/triangle.pdf <fig/triangle.pdf>`_
|
||||
|
||||
`Lien vers fig/proj.pdf <fig/proj.pdf>`_
|
||||
|
||||
Devoir à faire sans calculatrice.
|
||||
Reference in New Issue
Block a user