Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
save the thesis
  • Loading branch information
theresesmith committed Aug 10, 2015
0 parents commit 72a22ca
Show file tree
Hide file tree
Showing 56 changed files with 8,501 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .classpath
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/bin/
17 changes: 17 additions & 0 deletions .project
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>forThesis</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
11 changes: 11 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7
240 changes: 240 additions & 0 deletions CSE2500IncomingAssessment.tex
@@ -0,0 +1,240 @@
\documentclass[]{article}
\usepackage{hyperref}
\usepackage{amsthm}
\usepackage[cmex10]{amsmath}
\interdisplaylinepenalty=2500
\usepackage{amssymb}
\usepackage{graphicx}
%opening
\title{CSE2500 Incoming Assessment}
\author{}

\begin{document}

\maketitle




\begin{enumerate}

\item Matching symbolic representations with pseudocode

%Stick breaking:\\
%Start with a unit length.\\ % stick.\\
%This unit serves as "what is in stock".\\
%Every time a fractional part is required, a random fraction of the remaining %stock is taken.// %the stick is broken, one piece will be provided as output of the process, and the remainder will be held for future breaking.\\
%When it is desired to have $p$ fractions, adding to length 1, $p-1$ iterations will satisfy this.\\

\begin{figure}[ht]
\centering
\includegraphics[width=0.7\linewidth]{./pic8}
\label{fig:pic8}
\end{figure}

\[
\sum_{i=0}^k \frac{1}{2^i}
\]


let num = rand()*10;\\
let stock = 1;\\
let amount = 0;\\
let frac = 1/2;\\
getRandomFraction()\{\\
while (num $>0$)\{\\
stock = stock*frac;\\
amount = stock+amount;\\
num = num-1;\\
\}\\
return amount;\\
\}



let num = rand()*10;\\
let stock =1;\\
let amount = 0;\\
let frac = 1/2;\\
getRandomFraction()\{\\
frac=rand(); \\
amount = stock*frac;\\
stock = stock - amount;\\
return amount;\\
\}\\







\newpage
\item Matching figures/diagrams with symbolic representations\\
Show which equation goes with which diagram, if they can be matched.
\begin{enumerate}


\item \begin{figure}[ht]
\centering
\includegraphics[width=0.7\linewidth]{./pic2GNUPaint}
\caption{}
\label{fig:pic2}
\end{figure}

\item \begin{figure}[ht]
\centering
\includegraphics[width=0.7\linewidth]{./pic4}
\caption{}
\label{fig:pic4}
\end{figure}
\end{enumerate}

\begin{enumerate}

\item $b^2 + ab = (b+a/2)^2 - (a/2)^2$

\item $(a+b)^2 + (a-b)^2 = 2(a^2 + b^2)$


\end{enumerate}

\newpage
\item Matching figures/diagrams with pseudocode
\begin{enumerate}

\begin{figure}
\centering
\includegraphics[width=0.6\linewidth]{./pic9}
\caption{First}
\label{fig:pic9}
\end{figure}



\begin{figure}
\centering
\includegraphics[width=0.6\linewidth]{./pic10GNU}
\caption{Second}
\label{fig:pic10}
\end{figure}

\item let amount = 1;\\
getAmount(n)\{\\
amount = 0;\\
for i = 1 to n \{\\
for j = i to n\{\\
amount = amount +j;\\
end;\\
end;\\
return amount;

\item let amount = 1;\\
getAmount(n)\{\\
if (n==0)\{\\
return(1) \}\\
else\{\\
return(2*getAmount(n-1)+1);\\
\}\\







\end{enumerate}
\newpage
\item Comprehending figures\\

Explain why the figure matches the equation $\frac{a+b}{2} \geq \sqrt{ab}$ with equality if and only if $a=b$

\begin{figure}
\centering
\includegraphics[width=0.7\linewidth]{./pic5}
\caption{}
\label{fig:pic5}
\end{figure}

\newpage
\item Comprehending symbolic representation\\

What is the meaning of\\
\[
\sum_{ k \in \mathbb{N}}^{\infty} (2k+1)
\]
\newpage
\item Comprehending pseudocode

What is the meaning of

done = false;\\
let a = 0;\\
let b = 0;\\
let n = 2;\\
while(!done)\{\\
while($a>0$)\{\\
a=a+1;\\
while ($b>0$)\{\\
b=b+1;\\
while($n>0$)\{\\
n=n+1;\\
if ($a^n +b^n = c^n$)\{\\
done = true;\\
\}\\
\}\\
\} \\
\} \\
\}\\


\newpage
\item Applying symbolic representation to figure

Describe the significance of either or both of these figures in mathematical symbols:

\begin{figure}[ht]
\centering
\includegraphics[width=0.7\linewidth]{./pic1}
\caption{}
\label{fig:pic1}
\end{figure}


\newpage
\item Applying figure to symbolic representation

Draw a figure that expresses through any three points that are not collinear, two can be used to identify a line, and the third can be used, combined with that line, to identify a line parallel to the first line.

\newpage
\item Applying pseudocode to figure

Write pseudocode (e.g., as has been seen earlier in these questions) to correspond with this figure: (p. 93)


\newpage
\item Applying pseudocode to symbolic representation

Write pseudocode for this calculation:

${ n \choose k} = {n-1 \choose k-1}+ {n-1 \choose k}$
\newpage
\item Synthesis: word problems to figures

Draw a figure for this word problem:\\
Pick an angle between 0 and $\pi/2$ radians, call it $\theta$.\\
A right triangle can be drawn, the height of which is 1 plus the tangent of $\theta$, the base of which is 1 plus the cotangent of $\theta$. The angle $\theta$ is adjacent to the base. It will be the case that the hypotenuse of this triangle is the cosecant of $\theta$ plus the secant of $\theta$.
\newpage
\item Synthesis: word problems to symbolic representation\\

Express in symbols this word problem:\\
The number of moves in a game of size n is given by twice the number of moves in a game of size (n-1), plus one more move.
\newpage
\item Synthesis: word problems to pseudocode

Write pseudocode for this word problem:\\
Two trains, initially 40 miles apart on the same track, going opposite directions, are getting closer to each other at the rate of 40 miles per hour. An insect flies from one train to the other and back, repeatedly. How far does the insect fly, before the trains collide?

\end{enumerate}

\end{document}
4 changes: 4 additions & 0 deletions TODOs.tex
@@ -0,0 +1,4 @@
\newpage

TODOs
read more on van Hiele levels and their theory
9 changes: 9 additions & 0 deletions abstract.tex
@@ -0,0 +1,9 @@
Guided by constructivism, which posits that students assimilate new knowledge into what has made sense to them previously, we researched student conceptualizations of proof.
We used the qualitative research methods of thematic
analysis and phenomenography to learn and categorize student conceptualizations
of proof, and of mathematization more generally. Our published
work exhibited an explanatory connection between publications of others in
the mathematics education community and the computer science education
community. We used these phenomenographic categories to intuit ideas whose
emphasis might be helpful for students’ development of deeper understanding
of proof.
1 change: 1 addition & 0 deletions acknowledgments.tex
@@ -0,0 +1 @@
Thank you to Professor Donald Sheehy for his helpful suggestions and exemplary teaching.

0 comments on commit 72a22ca

Please sign in to comment.